Enum TabSprites

    • Enum Constant Detail

      • INCINERATOR

        public static final TabSprites INCINERATOR
      • TAB_BACKGROUND

        public static final TabSprites TAB_BACKGROUND
      • TAB_BACKGROUND_ACTIVE

        public static final TabSprites TAB_BACKGROUND_ACTIVE
      • UP_ARROW

        public static final TabSprites UP_ARROW
      • DOWN_ARROW

        public static final TabSprites DOWN_ARROW
    • Method Detail

      • values

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

        public static TabSprites 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
      • getSpriteId

        public int getSpriteId()
        Description copied from interface: SpriteOverride
        An ID for a sprite. Negative numbers are used by RuneLite specific sprites
        Specified by:
        getSpriteId in interface SpriteOverride
        See Also:
        SpriteID
      • getFileName

        public String getFileName()
        Description copied from interface: SpriteOverride
        The file name for the resource to be loaded, relative to the implementing class
        Specified by:
        getFileName in interface SpriteOverride