Enum Class DropItemAction

java.lang.Object
java.lang.Enum<DropItemAction>
org.geysermc.mcprotocollib.protocol.data.game.inventory.DropItemAction
All Implemented Interfaces:
Serializable, Comparable<DropItemAction>, Constable, ContainerAction

public enum DropItemAction extends Enum<DropItemAction> implements ContainerAction
  • Enum Constant Details

    • DROP_FROM_SELECTED

      public static final DropItemAction DROP_FROM_SELECTED
    • DROP_SELECTED_STACK

      public static final DropItemAction DROP_SELECTED_STACK
    • LEFT_CLICK_OUTSIDE_NOT_HOLDING

      public static final DropItemAction LEFT_CLICK_OUTSIDE_NOT_HOLDING
    • RIGHT_CLICK_OUTSIDE_NOT_HOLDING

      public static final DropItemAction RIGHT_CLICK_OUTSIDE_NOT_HOLDING
  • Method Details

    • values

      public static DropItemAction[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DropItemAction valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getId

      public int getId()
      Specified by:
      getId in interface ContainerAction
    • from

      public static DropItemAction from(int id)