Package com.epicbot.api.shared.model
Enum InventoryId
- java.lang.Object
-
- java.lang.Enum<InventoryId>
-
- com.epicbot.api.shared.model.InventoryId
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InventoryId>
public enum InventoryId extends java.lang.Enum<InventoryId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANK
Bank inventory.BARROWS_REWARD
Barrows reward chest inventory.CHAMBERS_OF_XERIC_CHEST
Chambers of Xeric chest inventory.EQUIPMENT
Equipment inventory.INVENTORY
Standard player inventory.MONKEY_MADNESS_PUZZLE_BOX
Monkey madness puzzle box inventory.PUZZLE_BOX
A puzzle box inventory.THEATRE_OF_BLOOD_CHEST
Theater of Blood reward chest inventory (Raids 2)TRADE
TRADEOTHER
The other trade inventory.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
Gets the raw inventory type ID.static InventoryId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InventoryId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRADE
public static final InventoryId TRADE
-
TRADEOTHER
public static final InventoryId TRADEOTHER
The other trade inventory.
-
INVENTORY
public static final InventoryId INVENTORY
Standard player inventory.
-
EQUIPMENT
public static final InventoryId EQUIPMENT
Equipment inventory.
-
BANK
public static final InventoryId BANK
Bank inventory.
-
PUZZLE_BOX
public static final InventoryId PUZZLE_BOX
A puzzle box inventory.
-
BARROWS_REWARD
public static final InventoryId BARROWS_REWARD
Barrows reward chest inventory.
-
MONKEY_MADNESS_PUZZLE_BOX
public static final InventoryId MONKEY_MADNESS_PUZZLE_BOX
Monkey madness puzzle box inventory.
-
CHAMBERS_OF_XERIC_CHEST
public static final InventoryId CHAMBERS_OF_XERIC_CHEST
Chambers of Xeric chest inventory.
-
THEATRE_OF_BLOOD_CHEST
public static final InventoryId THEATRE_OF_BLOOD_CHEST
Theater of Blood reward chest inventory (Raids 2)
-
-
Method Detail
-
values
public static InventoryId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InventoryId c : InventoryId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InventoryId valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getId
public int getId()
Gets the raw inventory type ID.- Returns:
- inventory type
-
-