public enum TableStyle extends Enum<TableStyle>
Enum Constant and Description |
---|
ASCENDING |
DESCENDING |
GROUPED |
Modifier and Type | Method and Description |
---|---|
static TableStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableStyle GROUPED
public static final TableStyle ASCENDING
public static final TableStyle DESCENDING
public static TableStyle[] values()
for (TableStyle c : TableStyle.values()) System.out.println(c);
public static TableStyle 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