public static enum MenuCreator.MENU_LOCATION extends Enum<MenuCreator.MENU_LOCATION>
| Enum Constant and Description |
|---|
EDIT |
FILE |
HELP |
OPTIONS |
RUN |
SEARCH |
TOOLS |
| Modifier and Type | Method and Description |
|---|---|
static MenuCreator.MENU_LOCATION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MenuCreator.MENU_LOCATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuCreator.MENU_LOCATION FILE
public static final MenuCreator.MENU_LOCATION EDIT
public static final MenuCreator.MENU_LOCATION RUN
public static final MenuCreator.MENU_LOCATION OPTIONS
public static final MenuCreator.MENU_LOCATION HELP
public static final MenuCreator.MENU_LOCATION SEARCH
public static final MenuCreator.MENU_LOCATION TOOLS
public static MenuCreator.MENU_LOCATION[] values()
for (MenuCreator.MENU_LOCATION c : MenuCreator.MENU_LOCATION.values()) System.out.println(c);
public static MenuCreator.MENU_LOCATION 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 © 1998-2021 Apache Software Foundation. All Rights Reserved.