public enum PresentationType extends java.lang.Enum<PresentationType>
| Enum Constant and Description |
|---|
ACTION |
CELL |
COLUMN |
DISPLAY |
EDITOR |
EXPLORER |
FORM |
FORM_ELEMENT |
TABLE |
| Modifier and Type | Method and Description |
|---|---|
static PresentationType |
valueOf(java.lang.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 TABLE
public static final PresentationType FORM_ELEMENT
public static final PresentationType FORM
public static final PresentationType COLUMN
public static final PresentationType ACTION
public static final PresentationType DISPLAY
public static final PresentationType CELL
public static final PresentationType EXPLORER
public static final PresentationType EDITOR
public static PresentationType[] values()
for (PresentationType c : PresentationType.values()) System.out.println(c);
public static PresentationType 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