Package net.minestom.server.event.entity
Class EntityFireExtinguishEvent
java.lang.Object
net.minestom.server.event.entity.EntityFireExtinguishEvent
- All Implemented Interfaces:
Event
,CancellableEvent
,EntityEvent
,EntityInstanceEvent
,InstanceEvent
public class EntityFireExtinguishEvent
extends Object
implements EntityInstanceEvent, CancellableEvent
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription@NotNull Entity
Gets the entity of this event.boolean
Gets if theEvent
should be cancelled or not.boolean
void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
-
Constructor Details
-
EntityFireExtinguishEvent
-
-
Method Details
-
isNatural
public boolean isNatural() -
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEvent
Gets if theEvent
should be cancelled or not.- Specified by:
isCancelled
in interfaceCancellableEvent
- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEvent
Marks theEvent
as cancelled or not.- Specified by:
setCancelled
in interfaceCancellableEvent
- Parameters:
cancel
- true if the event should be cancelled, false otherwise
-
getEntity
Description copied from interface:EntityEvent
Gets the entity of this event.- Specified by:
getEntity
in interfaceEntityEvent
- Returns:
- the entity
-