Enum Category

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Category>

    public enum Category
    extends java.lang.Enum<Category>
    • Enum Constant Detail

      • AGILITY

        public static final Category AGILITY
      • COMBAT

        public static final Category COMBAT
      • CONSTRUCTION

        public static final Category CONSTRUCTION
      • COOKING

        public static final Category COOKING
      • CRAFTING

        public static final Category CRAFTING
      • FARMING

        public static final Category FARMING
      • FIREMAKING

        public static final Category FIREMAKING
      • FISHING

        public static final Category FISHING
      • FLETCHING

        public static final Category FLETCHING
      • HERBLORE

        public static final Category HERBLORE
      • HUNTER

        public static final Category HUNTER
      • MAGIC

        public static final Category MAGIC
      • MINIGAMES

        public static final Category MINIGAMES
      • MINING

        public static final Category MINING
      • MONEYMAKING

        public static final Category MONEYMAKING
      • OTHER

        public static final Category OTHER
      • PRAYER

        public static final Category PRAYER
      • RUNECRAFTING

        public static final Category RUNECRAFTING
      • SLAYER

        public static final Category SLAYER
      • SMITHING

        public static final Category SMITHING
      • THIEVING

        public static final Category THIEVING
      • UTILITY

        public static final Category UTILITY
      • WOODCUTTING

        public static final Category WOODCUTTING
    • Method Detail

      • values

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

        public static Category 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 name
        java.lang.NullPointerException - if the argument is null
      • forName

        public static Category forName​(java.lang.String value)
      • getIcon

        public java.awt.image.BufferedImage getIcon()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Category>