Enum Constant and Description |
---|
FILTER |
GROCERY_LIST |
IMPORT |
ITEM_SELECTION |
MAP |
RECIPE |
Modifier and Type | Method and Description |
---|---|
static HelpPage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HelpPage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HelpPage MAP
public static final HelpPage GROCERY_LIST
public static final HelpPage ITEM_SELECTION
public static final HelpPage RECIPE
public static final HelpPage IMPORT
public static final HelpPage FILTER
public static HelpPage[] values()
for (HelpPage c : HelpPage.values()) System.out.println(c);
public static HelpPage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null