Class TurtleLayEggEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
com.destroystokyo.paper.event.entity.TurtleLayEggEvent
- All Implemented Interfaces:
- Cancellable
Fired when a Turtle lays eggs
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.entity.EntityEvententity
- 
Constructor SummaryConstructorsConstructorDescriptionTurtleLayEggEvent(@NotNull Turtle turtle, @NotNull Location location, int eggCount) 
- 
Method SummaryModifier and TypeMethodDescriptionintGet the number of eggs being laidThe turtle laying the eggsstatic @NotNull HandlerListGet the location where the eggs are being laidbooleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetEggCount(int eggCount) Set the number of eggs being laidMethods inherited from class org.bukkit.event.entity.EntityEventgetEntityTypeMethods inherited from class org.bukkit.event.EventcallEvent, getEventName, isAsynchronous
- 
Constructor Details- 
TurtleLayEggEvent
 
- 
- 
Method Details- 
getEntityThe turtle laying the eggs- Overrides:
- getEntityin class- EntityEvent
- Returns:
- The turtle
 
- 
getLocationGet the location where the eggs are being laid- Returns:
- Location of eggs
 
- 
getEggCountpublic int getEggCount()Get the number of eggs being laid- Returns:
- Number of eggs
 
- 
setEggCountpublic void setEggCount(int eggCount) Set the number of eggs being laid- Parameters:
- eggCount- Number of eggs
 
- 
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
 
-