Package net.minestom.server.event.item
Class PickupItemEvent
java.lang.Object
net.minestom.server.event.item.PickupItemEvent
- All Implemented Interfaces:
Event,CancellableEvent,EntityEvent,EntityInstanceEvent,InstanceEvent,ItemEvent
public class PickupItemEvent
extends Object
implements EntityInstanceEvent, ItemEvent, CancellableEvent
-
Constructor Summary
ConstructorsConstructorDescriptionPickupItemEvent(@NotNull LivingEntity livingEntity, @NotNull ItemEntity itemEntity) -
Method Summary
Modifier and TypeMethodDescription@NotNull EntityGets the entity of this event.@NotNull ItemEntity@NotNull ItemStack@NotNull LivingEntitybooleanGets if theEventshould be cancelled or not.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
-
Constructor Details
-
PickupItemEvent
public PickupItemEvent(@NotNull @NotNull LivingEntity livingEntity, @NotNull @NotNull ItemEntity itemEntity)
-
-
Method Details
-
getLivingEntity
-
getItemEntity
-
getItemStack
- Specified by:
getItemStackin interfaceItemEvent
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEventGets if theEventshould be cancelled or not.- Specified by:
isCancelledin interfaceCancellableEvent- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEventMarks theEventas cancelled or not.- Specified by:
setCancelledin interfaceCancellableEvent- Parameters:
cancel- true if the event should be cancelled, false otherwise
-
getEntity
Description copied from interface:EntityEventGets the entity of this event.- Specified by:
getEntityin interfaceEntityEvent- Returns:
- the entity
-