Package net.runelite.api
Enum InventoryID
- java.lang.Object
-
- java.lang.Enum<InventoryID>
-
- net.runelite.api.InventoryID
-
- All Implemented Interfaces:
Serializable
,Comparable<InventoryID>
@Deprecated public enum InventoryID extends Enum<InventoryID>
Deprecated.An enumeration of possible inventory types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANK
Deprecated.Bank inventory.BARROWS_REWARD
Deprecated.Barrows reward chest inventory.CHAMBERS_OF_XERIC_CHEST
Deprecated.Chambers of Xeric chest inventory.DRIFT_NET_FISHING_REWARD
Deprecated.Drift net fishing rewardEQUIPMENT
Deprecated.Equipment inventory.FISHING_TRAWLER_REWARD
Deprecated.Reward from fishing trawlerFORTIS_COLOSSEUM_REWARD_CHEST
Deprecated.Reward chest for the Fortis ColosseumGROUP_STORAGE
Deprecated.Group ironman shared storageGROUP_STORAGE_INV
Deprecated.Player inventory when accessing group ironman shared storageINVENTORY
Deprecated.Standard player inventory.KINGDOM_OF_MISCELLANIA
Deprecated.Kingdom Of Miscellania reward inventory.LUNAR_CHEST
Deprecated.Reward chest for Moons of PerilMONKEY_MADNESS_PUZZLE_BOX
Deprecated.Monkey madness puzzle box inventory.PUZZLE_BOX
Deprecated.A puzzle box inventory.SEED_VAULT
Deprecated.Seed vault located inside the Farming GuildTHEATRE_OF_BLOOD_CHEST
Deprecated.Theater of Blood reward chest inventory (Raids 2)TOA_REWARD_CHEST
Deprecated.TOA reward chestTRADE
Deprecated.The trade inventory.TRADEOTHER
Deprecated.The other trade inventory.WILDERNESS_LOOT_CHEST
Deprecated.Wilderness loot chest
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
getId()
Deprecated.Gets the raw inventory type ID.static InventoryID
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static InventoryID[]
values()
Deprecated.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
Deprecated.Reward from fishing trawler
-
TRADE
public static final InventoryID TRADE
Deprecated.The trade inventory.
-
TRADEOTHER
public static final InventoryID TRADEOTHER
Deprecated.The other trade inventory.
-
INVENTORY
public static final InventoryID INVENTORY
Deprecated.Standard player inventory.
-
EQUIPMENT
public static final InventoryID EQUIPMENT
Deprecated.Equipment inventory.
-
BANK
public static final InventoryID BANK
Deprecated.Bank inventory.
-
PUZZLE_BOX
public static final InventoryID PUZZLE_BOX
Deprecated.A puzzle box inventory.
-
BARROWS_REWARD
public static final InventoryID BARROWS_REWARD
Deprecated.Barrows reward chest inventory.
-
MONKEY_MADNESS_PUZZLE_BOX
public static final InventoryID MONKEY_MADNESS_PUZZLE_BOX
Deprecated.Monkey madness puzzle box inventory.
-
DRIFT_NET_FISHING_REWARD
public static final InventoryID DRIFT_NET_FISHING_REWARD
Deprecated.Drift net fishing reward
-
KINGDOM_OF_MISCELLANIA
public static final InventoryID KINGDOM_OF_MISCELLANIA
Deprecated.Kingdom Of Miscellania reward inventory.
-
CHAMBERS_OF_XERIC_CHEST
public static final InventoryID CHAMBERS_OF_XERIC_CHEST
Deprecated.Chambers of Xeric chest inventory.
-
THEATRE_OF_BLOOD_CHEST
public static final InventoryID THEATRE_OF_BLOOD_CHEST
Deprecated.Theater of Blood reward chest inventory (Raids 2)
-
SEED_VAULT
public static final InventoryID SEED_VAULT
Deprecated.Seed vault located inside the Farming Guild
-
GROUP_STORAGE
public static final InventoryID GROUP_STORAGE
Deprecated.Group ironman shared storage
-
GROUP_STORAGE_INV
public static final InventoryID GROUP_STORAGE_INV
Deprecated.Player inventory when accessing group ironman shared storage
-
WILDERNESS_LOOT_CHEST
public static final InventoryID WILDERNESS_LOOT_CHEST
Deprecated.Wilderness loot chest
-
TOA_REWARD_CHEST
public static final InventoryID TOA_REWARD_CHEST
Deprecated.TOA reward chest
-
LUNAR_CHEST
public static final InventoryID LUNAR_CHEST
Deprecated.Reward chest for Moons of Peril
-
FORTIS_COLOSSEUM_REWARD_CHEST
public static final InventoryID FORTIS_COLOSSEUM_REWARD_CHEST
Deprecated.Reward chest for the Fortis Colosseum
-
-
Method Detail
-
values
public static InventoryID[] values()
Deprecated.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)
Deprecated.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()
Deprecated.Gets the raw inventory type ID.- Returns:
- inventory type
-
-