Enum-Klasse Inventory.SlotType

java.lang.Object
java.lang.Enum<Inventory.SlotType>
net.risingworld.api.objects.Inventory.SlotType
Alle implementierten Schnittstellen:
Serializable, Comparable<Inventory.SlotType>, Constable
Umschließende Klasse:
Inventory

public static enum Inventory.SlotType extends Enum<Inventory.SlotType>
Determines the "inventory type" or "slot type", i.e the category in the inventory (regular inventory items, hotbar, equipment etc.)
  • Enum-Konstanten - Details

    • Quickslot

      public static final Inventory.SlotType Quickslot
      Quickslot items, i.e the hotbar (the items you hold in your hands)
    • Equipment

      public static final Inventory.SlotType Equipment
      The equipment items, the blue slots in the inventory which are usually accessible by holding a hotkey (e.g compass)
    • Inventory

      public static final Inventory.SlotType Inventory
      The regular inventory
  • Felddetails

    • value

      public final int value
  • Methodendetails

    • values

      public static Inventory.SlotType[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static Inventory.SlotType valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • get

      public static Inventory.SlotType get(int value)