Javadoc improvements per checkstyle

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-12-22 09:56:28 +11:00
parent d419ccca3f
commit d16413b877
96 changed files with 181 additions and 48 deletions

View File

@@ -325,6 +325,7 @@ public enum EntityType implements Keyed {
}
/**
* Gets the entity type name.
*
* @return the entity type's name
* @deprecated Magic value
@@ -349,6 +350,7 @@ public enum EntityType implements Keyed {
}
/**
* Gets the entity type id.
*
* @return the raw type id
* @deprecated Magic value
@@ -359,6 +361,7 @@ public enum EntityType implements Keyed {
}
/**
* Gets an entity type from its name.
*
* @param name the entity type's name
* @return the matching entity type or null
@@ -375,6 +378,7 @@ public enum EntityType implements Keyed {
}
/**
* Gets an entity from its id.
*
* @param id the raw type id
* @return the matching entity type or null

View File

@@ -0,0 +1,6 @@
/**
* Classes concerning an entity's persistent memory.
*
* Currently only relevant for Villagers.
*/
package org.bukkit.entity.memory;

View File

@@ -0,0 +1,5 @@
/**
* Interfaces for various {@link org.bukkit.entity.Minecart} types.
*/
package org.bukkit.entity.minecart;

View File

@@ -0,0 +1,6 @@
/**
* Interfaces for non-voxel objects that can exist in a {@link
* org.bukkit.World world}, including all players, monsters, projectiles, etc.
*/
package org.bukkit.entity;