Package ca.cgjennings.apps.arkham
Enum StrangeEonsAppWindow.AppMenu
- java.lang.Object
-
- java.lang.Enum<StrangeEonsAppWindow.AppMenu>
-
- ca.cgjennings.apps.arkham.StrangeEonsAppWindow.AppMenu
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StrangeEonsAppWindow.AppMenu>
- Enclosing class:
- StrangeEonsAppWindow
public static enum StrangeEonsAppWindow.AppMenu extends java.lang.Enum<StrangeEonsAppWindow.AppMenu>
Standard application menus that can be extended withStrangeEonsAppWindow.addMenuItem(ca.cgjennings.apps.arkham.StrangeEonsAppWindow.AppMenu, javax.swing.JComponent)
.- Since:
- 2.1a8
-
-
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.
-
-
-
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.
-
SOURCE
public static final StrangeEonsAppWindow.AppMenu SOURCE
The Source menu, which contains commands specific to plug-in development.
-
TOOLBOX
public static final StrangeEonsAppWindow.AppMenu TOOLBOX
The Toolbox menu, which contains commands related to installed plug-ins.
-
HELP
public static final StrangeEonsAppWindow.AppMenu HELP
The Help menu, which provides access to documentation.
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-