Enum Constant and Description |
---|
GROUPED
Grouped table is a set of rows embedded in a rounded rectangle
|
PLAIN
The default mode which displays a list of rows
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static TableMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableMode PLAIN
public static final TableMode GROUPED
public static TableMode[] values()
for (TableMode c : TableMode.values()) System.out.println(c);
public static TableMode 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