Enum HeadIcon

    • Enum Constant Detail

      • MELEE

        public static final HeadIcon MELEE
        Protect from melee.
      • RANGED

        public static final HeadIcon RANGED
        Protect from ranged.
      • MAGIC

        public static final HeadIcon MAGIC
        Protect from magic.
      • RETRIBUTION

        public static final HeadIcon RETRIBUTION
        Retribution prayer.
      • SMITE

        public static final HeadIcon SMITE
        Smite prayer.
      • REDEMPTION

        public static final HeadIcon REDEMPTION
        Redemption prayer.
      • RANGE_MAGE

        public static final HeadIcon RANGE_MAGE
        Protect from range and mage. (ie. used by Kalphite Queen)
      • RANGE_MELEE

        public static final HeadIcon RANGE_MELEE
        Protect from range and melee
      • MAGE_MELEE

        public static final HeadIcon MAGE_MELEE
        Protect from mage and melee
      • RANGE_MAGE_MELEE

        public static final HeadIcon RANGE_MAGE_MELEE
        Protect from range, mage, and melee
      • WRATH

        public static final HeadIcon WRATH
        Wrath curse
      • SOUL_SPLIT

        public static final HeadIcon SOUL_SPLIT
        Soult split curse
      • DEFLECT_MELEE

        public static final HeadIcon DEFLECT_MELEE
        Deflect melee curse
      • DEFLECT_RANGE

        public static final HeadIcon DEFLECT_RANGE
        Deflect range curse
      • DEFLECT_MAGE

        public static final HeadIcon DEFLECT_MAGE
        Deflect magic curse
    • Method Detail

      • values

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

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