Enum StrangeEonsAppWindow.AppMenu

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DECK
      The Deck menu, which contains commands specific to editing decks, expansion boards, and other arranged graphical objects.
      EDIT
      The Edit menu, containing generic edit commands that apply in a wide variety of contexts.
      EXPANSION
      The Expansion menu, which allows the user to change the expansion(s) associated with a game component.
      FILE
      The File menu, containing commands related to document files and the project folder.
      HELP
      The Help menu, which provides access to documentation.
      MARKUP
      The Markup menu, containing commands that allow the user to format text content.
      SOURCE
      The Source menu, which contains commands specific to plug-in development.
      TOOLBOX
      The Toolbox menu, which contains commands related to installed plug-ins.
      VIEW
      The View menu, which gives the user control over how editors display their content.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static StrangeEonsAppWindow.AppMenu valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static StrangeEonsAppWindow.AppMenu[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • FILE

        public static final StrangeEonsAppWindow.AppMenu FILE
        The File menu, containing commands related to document files and the project folder.
      • EDIT

        public static final StrangeEonsAppWindow.AppMenu EDIT
        The Edit menu, containing generic edit commands that apply in a wide variety of contexts.
      • VIEW

        public static final StrangeEonsAppWindow.AppMenu VIEW
        The View menu, which gives the user control over how editors display their content.
      • EXPANSION

        public static final StrangeEonsAppWindow.AppMenu EXPANSION
        The Expansion menu, which allows the user to change the expansion(s) associated with a game component.
      • MARKUP

        public static final StrangeEonsAppWindow.AppMenu MARKUP
        The Markup menu, containing commands that allow the user to format text content.
      • DECK

        public static final StrangeEonsAppWindow.AppMenu DECK
        The Deck menu, which contains commands specific to editing decks, expansion boards, and other arranged graphical objects.
      • TOOLBOX

        public static final StrangeEonsAppWindow.AppMenu TOOLBOX
        The Toolbox menu, which contains commands related to installed plug-ins.
    • Method Detail

      • values

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

        public static StrangeEonsAppWindow.AppMenu 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