Package net.runelite.api
Enum InventoryID
- java.lang.Object
-
- java.lang.Enum<InventoryID>
-
- net.runelite.api.InventoryID
-
- All Implemented Interfaces:
Serializable
,Comparable<InventoryID>
public enum InventoryID extends Enum<InventoryID>
An enumeration of possible inventory types.
-
-
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.DRIFT_NET_FISHING_REWARD
Drift net fishing rewardEQUIPMENT
Equipment inventory.FISHING_TRAWLER_REWARD
Reward from fishing trawlerFORTIS_COLOSSEUM_REWARD_CHEST
Reward chest for the Fortis ColosseumGROUP_STORAGE
Group ironman shared storageGROUP_STORAGE_INV
Player inventory when accessing group ironman shared storageINVENTORY
Standard player inventory.KINGDOM_OF_MISCELLANIA
Kingdom Of Miscellania reward inventory.LUNAR_CHEST
Reward chest for Moons of PerilMONKEY_MADNESS_PUZZLE_BOX
Monkey madness puzzle box inventory.PUZZLE_BOX
A puzzle box inventory.SEED_VAULT
Seed vault located inside the Farming GuildTHEATRE_OF_BLOOD_CHEST
Theater of Blood reward chest inventory (Raids 2)TOA_REWARD_CHEST
TOA reward chestTRADE
The trade inventory.TRADEOTHER
The other trade inventory.WILDERNESS_LOOT_CHEST
Wilderness loot chest
-
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(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
-
FISHING_TRAWLER_REWARD
public static final InventoryID FISHING_TRAWLER_REWARD
Reward from fishing trawler
-
TRADE
public static final InventoryID TRADE
The trade inventory.
-
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.
-
DRIFT_NET_FISHING_REWARD
public static final InventoryID DRIFT_NET_FISHING_REWARD
Drift net fishing reward
-
KINGDOM_OF_MISCELLANIA
public static final InventoryID KINGDOM_OF_MISCELLANIA
Kingdom Of Miscellania reward 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)
-
SEED_VAULT
public static final InventoryID SEED_VAULT
Seed vault located inside the Farming Guild
-
GROUP_STORAGE
public static final InventoryID GROUP_STORAGE
Group ironman shared storage
-
GROUP_STORAGE_INV
public static final InventoryID GROUP_STORAGE_INV
Player inventory when accessing group ironman shared storage
-
WILDERNESS_LOOT_CHEST
public static final InventoryID WILDERNESS_LOOT_CHEST
Wilderness loot chest
-
TOA_REWARD_CHEST
public static final InventoryID TOA_REWARD_CHEST
TOA reward chest
-
LUNAR_CHEST
public static final InventoryID LUNAR_CHEST
Reward chest for Moons of Peril
-
FORTIS_COLOSSEUM_REWARD_CHEST
public static final InventoryID FORTIS_COLOSSEUM_REWARD_CHEST
Reward chest for the Fortis Colosseum
-
-
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(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getId
public int getId()
Gets the raw inventory type ID.- Returns:
- inventory type
-
-