Enum Class ItemType.Context

java.lang.Object
java.lang.Enum<ItemType.Context>
net.glowstone.block.itemtype.ItemType.Context
All Implemented Interfaces:
Serializable, Comparable<ItemType.Context>, Constable
Enclosing class:
ItemType

public static enum ItemType.Context extends Enum<ItemType.Context>
Context of the Items interaction.
  • Enum Constant Details

    • AIR

      public static final ItemType.Context AIR
      The item can only be used when clicking in the air.
    • BLOCK

      public static final ItemType.Context BLOCK
      The item can only be used when clicking against a block.
    • ANY

      public static final ItemType.Context ANY
      The item can be used on any click.
  • Method Details

    • values

      public static ItemType.Context[] 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 ItemType.Context 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
    • isAirApplicable

      public boolean isAirApplicable()
    • isBlockApplicable

      public boolean isBlockApplicable()