Package dev.cwhead.GravesX.event
Class GraveExplodeEvent
java.lang.Object
org.bukkit.event.Event
dev.cwhead.GravesX.event.graveevent.GraveEvent
dev.cwhead.GravesX.event.GraveExplodeEvent
- All Implemented Interfaces:
Addon
,org.bukkit.event.Cancellable
- Direct Known Subclasses:
GraveExplodeEvent
Represents an event that occurs when a grave explodes.
This event extends GraveEvent
and is cancellable, allowing event listeners
to prevent the explosion from occurring if necessary.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
org.bukkit.event.Event.Result
-
Field Summary
Fields inherited from class dev.cwhead.GravesX.event.graveevent.GraveEvent
block, blockType, grave, location
-
Constructor Summary
ConstructorsConstructorDescriptionGraveExplodeEvent
(@NotNull org.bukkit.Location location, @Nullable org.bukkit.entity.Entity entity, @NotNull Grave grave) Constructs a newGraveExplodeEvent
. -
Method Summary
Modifier and TypeMethodDescription@NotNull org.bukkit.entity.Entity
Gets the entity that caused the explosion.static @NotNull org.bukkit.event.HandlerList
Gets the static list of handlers for this event.@NotNull org.bukkit.event.HandlerList
Gets the list of handlers for this event.@NotNull org.bukkit.entity.Player
Gets the player that caused the explosion.boolean
boolean
Methods inherited from class dev.cwhead.GravesX.event.graveevent.GraveEvent
getBlock, getBlockExp, getBlockType, getGrave, getGraveExperience, getGraveOwnerDisplayName, getGraveOwnerName, getGraveOwnerNameDisplay, getGraveOwnerTexture, getGraveOwnerTextureSignature, getGraveOwnerUniqueId, getGraveUUID, getLocation, hasBlock, hasBlockType, hasLocation, isAddon, isCancelled, isDropItems, setAddon, setBlockExp, setCancelled, setDropItems, setLocation
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
Constructor Details
-
GraveExplodeEvent
public GraveExplodeEvent(@NotNull @NotNull org.bukkit.Location location, @Nullable @Nullable org.bukkit.entity.Entity entity, @NotNull @NotNull Grave grave) Constructs a newGraveExplodeEvent
.- Parameters:
location
- The location where the explosion occurs.entity
- The entity that caused the explosion, if any. This may benull
if no specific entity caused the explosion.grave
- The grave that is exploding.
-
-
Method Details
-
hasEntity
public boolean hasEntity()- Returns:
true
if there is a source entity for this explosion.
-
getEntity
@NotNull public @NotNull org.bukkit.entity.Entity getEntity()Gets the entity that caused the explosion.- Returns:
- The entity that caused the explosion.
- Throws:
GravesXEventNullPointerException
- if no source entity is present.
-
hasPlayer
public boolean hasPlayer()- Returns:
true
if the source entity is aPlayer
.
-
getPlayer
@NotNull public @NotNull org.bukkit.entity.Player getPlayer()Gets the player that caused the explosion.- Returns:
- The player that caused the explosion.
- Throws:
GravesXEventNullPointerException
- if the source is not a player or absent.
-
getHandlers
@NotNull public @NotNull org.bukkit.event.HandlerList getHandlers()Gets the list of handlers for this event.- Overrides:
getHandlers
in classGraveEvent
- Returns:
- The handler list for this event.
-
getHandlerList
@NotNull public static @NotNull org.bukkit.event.HandlerList getHandlerList()Gets the static list of handlers for this event.- Returns:
- The static handler list for this event.
-