Enum ItemContainerId
- java.lang.Object
-
- java.lang.Enum<ItemContainerId>
-
- org.dreambot.api.methods.container.general.ItemContainerId
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ItemContainerId>
public enum ItemContainerId extends java.lang.Enum<ItemContainerId>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANK
BARROWS_CHEST
CHAMBERS_OF_XERIC_CHEST
EQUIPMENT
GE_SLOT_1
GE_SLOT_2
GE_SLOT_3
GE_SLOT_4
GE_SLOT_5
GE_SLOT_6
GE_SLOT_7
GE_SLOT_8
INVENTORY
LOOTING_BAG
THEATRE_OF_BLOOD_CHEST
TOA_REWARD_CHEST
TRADE
TRADE_OTHER
WILDERNESS_LOOT_CHEST
ZULRAH_DEATH_COLLECT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
static ItemContainerId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ItemContainerId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRADE
public static final ItemContainerId TRADE
-
TRADE_OTHER
public static final ItemContainerId TRADE_OTHER
-
INVENTORY
public static final ItemContainerId INVENTORY
-
EQUIPMENT
public static final ItemContainerId EQUIPMENT
-
BANK
public static final ItemContainerId BANK
-
GE_SLOT_1
public static final ItemContainerId GE_SLOT_1
-
GE_SLOT_2
public static final ItemContainerId GE_SLOT_2
-
GE_SLOT_3
public static final ItemContainerId GE_SLOT_3
-
GE_SLOT_4
public static final ItemContainerId GE_SLOT_4
-
GE_SLOT_5
public static final ItemContainerId GE_SLOT_5
-
GE_SLOT_6
public static final ItemContainerId GE_SLOT_6
-
GE_SLOT_7
public static final ItemContainerId GE_SLOT_7
-
GE_SLOT_8
public static final ItemContainerId GE_SLOT_8
-
LOOTING_BAG
public static final ItemContainerId LOOTING_BAG
-
BARROWS_CHEST
public static final ItemContainerId BARROWS_CHEST
-
CHAMBERS_OF_XERIC_CHEST
public static final ItemContainerId CHAMBERS_OF_XERIC_CHEST
-
THEATRE_OF_BLOOD_CHEST
public static final ItemContainerId THEATRE_OF_BLOOD_CHEST
-
WILDERNESS_LOOT_CHEST
public static final ItemContainerId WILDERNESS_LOOT_CHEST
-
ZULRAH_DEATH_COLLECT
public static final ItemContainerId ZULRAH_DEATH_COLLECT
-
TOA_REWARD_CHEST
public static final ItemContainerId TOA_REWARD_CHEST
-
-
Method Detail
-
values
public static ItemContainerId[] 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 (ItemContainerId c : ItemContainerId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ItemContainerId 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()
-
-