Package org.bukkit.event.entity
Class EntityEnterLoveModeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityEnterLoveModeEvent
- All Implemented Interfaces:
- Cancellable
Called when an entity enters love mode.
 
This can be cancelled but the item will still be consumed that was used to make the entity enter into love mode.
This can be cancelled but the item will still be consumed that was used to make the entity enter into love mode.
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.entity.EntityEvententity
- 
Constructor SummaryConstructorsConstructorDescriptionEntityEnterLoveModeEvent(Animals animalInLove, HumanEntity humanEntity, int ticksInLove) 
- 
Method SummaryModifier and TypeMethodDescriptionGets the animal that is entering love mode.static HandlerListGets the Human Entity that caused the animal to enter love mode.intGets the amount of ticks that the animal will fall in love for.booleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetTicksInLove(int ticksInLove) Sets the amount of ticks that the animal will fall in love for.Methods inherited from class org.bukkit.event.entity.EntityEventgetEntityTypeMethods inherited from class org.bukkit.event.EventgetEventName, isAsynchronous
- 
Constructor Details- 
EntityEnterLoveModeEventpublic EntityEnterLoveModeEvent(@NotNull Animals animalInLove, @Nullable HumanEntity humanEntity, int ticksInLove) 
 
- 
- 
Method Details- 
getEntityGets the animal that is entering love mode.- Overrides:
- getEntityin class- EntityEvent
- Returns:
- The animal that is entering love mode
 
- 
getHumanEntityGets the Human Entity that caused the animal to enter love mode.- Returns:
- The Human entity that caused the animal to enter love mode, or null if there wasn't one.
 
- 
getTicksInLovepublic int getTicksInLove()Gets the amount of ticks that the animal will fall in love for.- Returns:
- The amount of ticks that the animal will fall in love for
 
- 
setTicksInLovepublic void setTicksInLove(int ticksInLove) Sets the amount of ticks that the animal will fall in love for.- Parameters:
- ticksInLove- The amount of ticks that the animal will fall in love for
 
- 
isCancelledpublic boolean isCancelled()Description copied from interface:CancellableGets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
- isCancelledin interface- Cancellable
- Returns:
- true if this event is cancelled
 
- 
setCancelledpublic void setCancelled(boolean cancel) Description copied from interface:CancellableSets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
- setCancelledin interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-