public static enum ApplicationResources.Keys extends Enum<ApplicationResources.Keys>
An enumeration class defining the keys of all resources contained within the application default resource bundle.
Enum Constant and Description |
---|
EXIT_ACTION_MNEMO
The standard mnemonic for the exit action.
|
EXIT_ACTION_TEXT
The standard text for the exit action.
|
EXIT_ACTION_TOOLTIP
The standard tool tip for the exit action.
|
EXIT_PROMPT_MSG
The message of the application exit prompt dialog.
|
EXIT_PROMPT_TIT
The title of the application exit prompt dialog.
|
Modifier and Type | Method and Description |
---|---|
static ApplicationResources.Keys |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationResources.Keys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationResources.Keys EXIT_PROMPT_MSG
public static final ApplicationResources.Keys EXIT_PROMPT_TIT
public static final ApplicationResources.Keys EXIT_ACTION_TEXT
public static final ApplicationResources.Keys EXIT_ACTION_TOOLTIP
public static final ApplicationResources.Keys EXIT_ACTION_MNEMO
public static ApplicationResources.Keys[] values()
for (ApplicationResources.Keys c : ApplicationResources.Keys.values()) System.out.println(c);
public static ApplicationResources.Keys valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016 The JGUIraffe Team. All rights reserved.