Enum ActionWindow

  • All Implemented Interfaces:
    Closeable, Lockable, Openable, java.io.Serializable, java.lang.Comparable<ActionWindow>

    @Deprecated
    public enum ActionWindow
    extends java.lang.Enum<ActionWindow>
    implements Openable, Closeable, Lockable
    Deprecated.
    ActionWindows are the windows opened by clicking the icons within the various management windows within the ribbon bar (all official naming)
    • Enum Constant Detail

      • BACKPACK

        public static final ActionWindow BACKPACK
        Deprecated.
      • WORN_EQUIPMENT

        public static final ActionWindow WORN_EQUIPMENT
        Deprecated.
      • SKILLS

        public static final ActionWindow SKILLS
        Deprecated.
      • PRAYERS

        public static final ActionWindow PRAYERS
        Deprecated.
      • MAGIC_BOOK

        public static final ActionWindow MAGIC_BOOK
        Deprecated.
      • MAGIC_ABILITIES

        @Deprecated
        public static final ActionWindow MAGIC_ABILITIES
        Deprecated.
      • MELEE_ABILITIES

        public static final ActionWindow MELEE_ABILITIES
        Deprecated.
      • RANGED_ABILITIES

        public static final ActionWindow RANGED_ABILITIES
        Deprecated.
      • DEFENCE_ABILITIES

        public static final ActionWindow DEFENCE_ABILITIES
        Deprecated.
      • CONSTITUTION_ABILITIES

        public static final ActionWindow CONSTITUTION_ABILITIES
        Deprecated.
      • DEFENSIVE_ABILITIES

        public static final ActionWindow DEFENSIVE_ABILITIES
        Deprecated.
      • FRIENDS

        public static final ActionWindow FRIENDS
        Deprecated.
      • EMOTES

        public static final ActionWindow EMOTES
        Deprecated.
      • FAMILIAR

        public static final ActionWindow FAMILIAR
        Deprecated.
      • MINIGAMES

        public static final ActionWindow MINIGAMES
        Deprecated.
    • Method Detail

      • values

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

        public static ActionWindow valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getOpen

        @NonNull
        public static @NonNull java.util.List<ActionWindow> getOpen()
        Deprecated.
        Gets all open action windows
      • isCustomizationLocked

        @Deprecated
        public static boolean isCustomizationLocked()
        Deprecated.
      • isLayoutLocked

        public static boolean isLayoutLocked()
        Deprecated.
      • isTabbed

        public boolean isTabbed()
        Deprecated.
      • isTabDisplayed

        public boolean isTabDisplayed()
        Deprecated.
      • close

        public boolean close()
        Deprecated.
        Specified by:
        close in interface Closeable
      • isClosed

        @Deprecated
        public boolean isClosed()
        Deprecated.
        Specified by:
        isClosed in interface Closeable
      • isLocked

        public boolean isLocked()
        Deprecated.
        Specified by:
        isLocked in interface Lockable
      • open

        public boolean open()
        Deprecated.
        Opens up the window so it's visible
        Specified by:
        open in interface Openable
      • isOpen

        public boolean isOpen()
        Deprecated.
        Checks if the window is visible
        Specified by:
        isOpen in interface Openable
      • toString

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