Package org.bukkit.block.data.type
Interface TurtleEgg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetEggs()Gets the value of the 'eggs' property.intgetHatch()Gets the value of the 'hatch' property.intgetMaximumEggs()Gets the maximum allowed value of the 'eggs' property.intgetMaximumHatch()Gets the maximum allowed value of the 'hatch' property.intgetMinimumEggs()Gets the minimum allowed value of the 'eggs' property.voidsetEggs(int eggs)Sets the value of the 'eggs' property.voidsetHatch(int hatch)Sets the value of the 'hatch' property.-
Methods inherited from interface org.bukkit.block.data.BlockData
clone, getAsString, getAsString, getMaterial, matches, merge
-
-
-
-
Method Detail
-
getEggs
int getEggs()
Gets the value of the 'eggs' property.- Returns:
- the 'eggs' value
-
setEggs
void setEggs(int eggs)
Sets the value of the 'eggs' property.- Parameters:
eggs- the new 'eggs' value
-
getMinimumEggs
int getMinimumEggs()
Gets the minimum allowed value of the 'eggs' property.- Returns:
- the minimum 'eggs' value
-
getMaximumEggs
int getMaximumEggs()
Gets the maximum allowed value of the 'eggs' property.- Returns:
- the maximum 'eggs' value
-
getHatch
int getHatch()
Gets the value of the 'hatch' property.- Returns:
- the 'hatch' value
-
setHatch
void setHatch(int hatch)
Sets the value of the 'hatch' property.- Parameters:
hatch- the new 'hatch' value
-
getMaximumHatch
int getMaximumHatch()
Gets the maximum allowed value of the 'hatch' property.- Returns:
- the maximum 'hatch' value
-
-