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