Enum ItemCategory

    • Enum Constant Detail

      • PICKAXE

        public static final ItemCategory PICKAXE
        Deprecated.
      • HARPOON

        public static final ItemCategory HARPOON
        Deprecated.
      • MACHETE

        public static final ItemCategory MACHETE
        Deprecated.
      • HAMMER

        public static final ItemCategory HAMMER
        Deprecated.
      • CROSSBOW

        public static final ItemCategory CROSSBOW
        Deprecated.
      • METAL_ARROW

        public static final ItemCategory METAL_ARROW
        Deprecated.
      • BRUTAL_ARROW

        public static final ItemCategory BRUTAL_ARROW
        Deprecated.
      • FIRE_ARROW

        public static final ItemCategory FIRE_ARROW
        Deprecated.
      • SPECIAL_ARROW

        public static final ItemCategory SPECIAL_ARROW
        Deprecated.
      • ARROWTIPS

        public static final ItemCategory ARROWTIPS
        Deprecated.
      • AIR_RUNE

        public static final ItemCategory AIR_RUNE
        Deprecated.
      • AIR_STAFF

        public static final ItemCategory AIR_STAFF
        Deprecated.
      • FIRE_RUNE

        public static final ItemCategory FIRE_RUNE
        Deprecated.
      • FIRE_STAFF

        public static final ItemCategory FIRE_STAFF
        Deprecated.
      • WATER_RUNE

        public static final ItemCategory WATER_RUNE
        Deprecated.
      • WATER_STAFF

        public static final ItemCategory WATER_STAFF
        Deprecated.
      • EARTH_RUNE

        public static final ItemCategory EARTH_RUNE
        Deprecated.
      • EARTH_STAFF

        public static final ItemCategory EARTH_STAFF
        Deprecated.
      • ANTIPOISON

        public static final ItemCategory ANTIPOISON
        Deprecated.
      • ANTIVENOM

        public static final ItemCategory ANTIVENOM
        Deprecated.
      • ANTIDISEASE

        public static final ItemCategory ANTIDISEASE
        Deprecated.
      • ANTIFIRE

        public static final ItemCategory ANTIFIRE
        Deprecated.
      • PRAYER_POTION

        public static final ItemCategory PRAYER_POTION
        Deprecated.
      • RESTORE_POTION

        public static final ItemCategory RESTORE_POTION
        Deprecated.
      • SUPER_RESTORE_POTION

        public static final ItemCategory SUPER_RESTORE_POTION
        Deprecated.
      • SARADOMIN_BREW

        public static final ItemCategory SARADOMIN_BREW
        Deprecated.
      • RUN_RESTORE_ITEM

        public static final ItemCategory RUN_RESTORE_ITEM
        Deprecated.
      • STAMINA_POTION

        public static final ItemCategory STAMINA_POTION
        Deprecated.
      • AGILITY_POTION

        public static final ItemCategory AGILITY_POTION
        Deprecated.
      • ANTI_FIRE_POTION

        public static final ItemCategory ANTI_FIRE_POTION
        Deprecated.
      • FULL_EDIBLE_FOOD

        public static final ItemCategory FULL_EDIBLE_FOOD
        Deprecated.
      • EDIBLE_FOOD

        public static final ItemCategory EDIBLE_FOOD
        Deprecated.
      • COOKED_FISH

        public static final ItemCategory COOKED_FISH
        Deprecated.
      • GNOME_FOOD

        public static final ItemCategory GNOME_FOOD
        Deprecated.
      • POTATO_FOOD

        public static final ItemCategory POTATO_FOOD
        Deprecated.
      • GAMES_NECKLACE

        public static final ItemCategory GAMES_NECKLACE
        Deprecated.
      • RING_OF_DUELING

        public static final ItemCategory RING_OF_DUELING
        Deprecated.
      • BURNING_AMULET

        public static final ItemCategory BURNING_AMULET
        Deprecated.
      • NECKLACE_OF_PASSAGE

        public static final ItemCategory NECKLACE_OF_PASSAGE
        Deprecated.
      • SKILLS_NECKLACE

        public static final ItemCategory SKILLS_NECKLACE
        Deprecated.
      • RING_OF_WEALTH

        public static final ItemCategory RING_OF_WEALTH
        Deprecated.
      • COMBAT_BRACELET

        public static final ItemCategory COMBAT_BRACELET
        Deprecated.
      • AMULET_OF_GLORY

        public static final ItemCategory AMULET_OF_GLORY
        Deprecated.
      • DIGSITE_PENDANT

        public static final ItemCategory DIGSITE_PENDANT
        Deprecated.
      • SLAYER_RING

        public static final ItemCategory SLAYER_RING
        Deprecated.
      • PHAROAH_SCEPTRE

        public static final ItemCategory PHAROAH_SCEPTRE
        Deprecated.
      • BURNABLE_LOGS

        public static final ItemCategory BURNABLE_LOGS
        Deprecated.
      • GREEGREE

        public static final ItemCategory GREEGREE
        Deprecated.
      • ANTIFIRE_SHIELD

        public static final ItemCategory ANTIFIRE_SHIELD
        Deprecated.
      • ANTI_WYVERN_SHIELD

        public static final ItemCategory ANTI_WYVERN_SHIELD
        Deprecated.
      • GHOSTSPEAK

        public static final ItemCategory GHOSTSPEAK
        Deprecated.
      • LIGHT_SOURCE

        public static final ItemCategory LIGHT_SOURCE
        Deprecated.
      • HUNTING_CAT

        public static final ItemCategory HUNTING_CAT
        Deprecated.
      • FLOWERS

        public static final ItemCategory FLOWERS
        Deprecated.
      • ROD_OF_IVANDIS

        public static final ItemCategory ROD_OF_IVANDIS
        Deprecated.
      • SALVE_AMULET

        public static final ItemCategory SALVE_AMULET
        Deprecated.
      • WATERING_CAN

        public static final ItemCategory WATERING_CAN
        Deprecated.
      • ENCHANTED_LYRE

        public static final ItemCategory ENCHANTED_LYRE
        Deprecated.
      • SKILL_CAPE

        public static final ItemCategory SKILL_CAPE
        Deprecated.
      • SLAYER_HELMET

        public static final ItemCategory SLAYER_HELMET
        Deprecated.
      • RAW_FISH

        public static final ItemCategory RAW_FISH
        Deprecated.
      • COMPOST

        public static final ItemCategory COMPOST
        Deprecated.
      • FAIRY_STAFF

        public static final ItemCategory FAIRY_STAFF
        Deprecated.
      • EARTH_ALTAR

        public static final ItemCategory EARTH_ALTAR
        Deprecated.
      • ESSENCE

        public static final ItemCategory ESSENCE
        Deprecated.
      • ESSENCE_HIGH

        public static final ItemCategory ESSENCE_HIGH
        Deprecated.
        Excludes rune essence
      • COOKING_GUILD_ENTRY

        public static final ItemCategory COOKING_GUILD_ENTRY
        Deprecated.
    • Method Detail

      • values

        public static ItemCategory[] 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 (ItemCategory c : ItemCategory.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ItemCategory 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 name
        NullPointerException - if the argument is null
      • is

        public static boolean is​(int id,
                                 ItemCategory[] categories)
        Deprecated.
      • getIds

        public int[] getIds()
        Deprecated.