public enum PresentationType extends Enum<PresentationType>
Enum Constant and Description |
---|
DATA_VALUES
Presentation as a choice of data values
|
NAVIGATION_OPTIONS
Presentation as a choice of navigation options
|
NOT_SPECIFIED
Presentation type is not specified
|
Modifier and Type | Method and Description |
---|---|
static PresentationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PresentationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresentationType NOT_SPECIFIED
public static final PresentationType DATA_VALUES
public static final PresentationType NAVIGATION_OPTIONS
public static PresentationType[] values()
for (PresentationType c : PresentationType.values()) System.out.println(c);
public static PresentationType 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 null