Package org.bukkit.entity
Interface Ageable
- All Superinterfaces:
CommandSender,Creature,Damageable,Entity,LivingEntity,Metadatable,Permissible,ProjectileSource,ServerOperator
- All Known Subinterfaces:
Animals,Chicken,Cow,Horse,MushroomCow,Ocelot,Pig,Rabbit,Sheep,Villager,Wolf
public interface Ageable extends Creature
Represents an entity that can age and breed.
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description booleancanBreed()Return the ability to breed of the animal.intgetAge()Gets the age of this animal.booleangetAgeLock()Gets the current agelock.booleanisAdult()Returns true if the animal is an adult.voidsetAdult()Sets the age of the animal to an adultvoidsetAge(int age)Sets the age of this animal.voidsetAgeLock(boolean lock)Lock the age of the animal, setting this will prevent the animal from maturing or getting ready for mating.voidsetBaby()Sets the age of the animal to a babyvoidsetBreed(boolean breed)Set breedability of the animal, if the animal is a baby and set to breed it will instantly grow up.Methods inherited from interface org.bukkit.entity.Damageable
_INVALID_damage, _INVALID_damage, _INVALID_getHealth, _INVALID_getMaxHealth, _INVALID_setHealth, _INVALID_setMaxHealth, damage, damage, getHealth, getMaxHealth, resetMaxHealth, setHealth, setMaxHealthMethods inherited from interface org.bukkit.entity.Entity
eject, getCustomName, getEntityId, getFallDistance, getFireTicks, getLastDamageCause, getLocation, getLocation, getMaxFireTicks, getNearbyEntities, getPassenger, getServer, getTicksLived, getType, getUniqueId, getVehicle, getVelocity, getWorld, isCustomNameVisible, isDead, isEmpty, isInsideVehicle, isOnGround, isValid, leaveVehicle, playEffect, remove, setCustomName, setCustomNameVisible, setFallDistance, setFireTicks, setLastDamageCause, setPassenger, setTicksLived, setVelocity, spigot, teleport, teleport, teleport, teleportMethods inherited from interface org.bukkit.entity.LivingEntity
_INVALID_getLastDamage, _INVALID_setLastDamage, addPotionEffect, addPotionEffect, addPotionEffects, getActivePotionEffects, getCanPickupItems, getEquipment, getEyeHeight, getEyeHeight, getEyeLocation, getKiller, getLastDamage, getLastTwoTargetBlocks, getLastTwoTargetBlocks, getLeashHolder, getLineOfSight, getLineOfSight, getMaximumAir, getMaximumNoDamageTicks, getNoDamageTicks, getRemainingAir, getRemoveWhenFarAway, getTargetBlock, getTargetBlock, hasLineOfSight, hasPotionEffect, isLeashed, removePotionEffect, setCanPickupItems, setLastDamage, setLeashHolder, setMaximumAir, setMaximumNoDamageTicks, setNoDamageTicks, setRemainingAir, setRemoveWhenFarAway, shootArrow, throwEgg, throwSnowballMethods inherited from interface org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadataMethods inherited from interface org.bukkit.permissions.Permissible
addAttachment, addAttachment, addAttachment, addAttachment, getEffectivePermissions, hasPermission, hasPermission, isPermissionSet, isPermissionSet, recalculatePermissions, removeAttachmentMethods inherited from interface org.bukkit.projectiles.ProjectileSource
launchProjectile, launchProjectile
-
Method Details
-
getAge
int getAge()Gets the age of this animal.- Returns:
- Age
-
setAge
void setAge(int age)Sets the age of this animal.- Parameters:
age- New age
-
setAgeLock
void setAgeLock(boolean lock)Lock the age of the animal, setting this will prevent the animal from maturing or getting ready for mating.- Parameters:
lock- new lock
-
getAgeLock
boolean getAgeLock()Gets the current agelock.- Returns:
- the current agelock
-
setBaby
void setBaby()Sets the age of the animal to a baby -
setAdult
void setAdult()Sets the age of the animal to an adult -
isAdult
boolean isAdult()Returns true if the animal is an adult.- Returns:
- return true if the animal is an adult
-
canBreed
boolean canBreed()Return the ability to breed of the animal.- Returns:
- the ability to breed of the animal
-
setBreed
void setBreed(boolean breed)Set breedability of the animal, if the animal is a baby and set to breed it will instantly grow up.- Parameters:
breed- breedability of the animal
-