public static enum Table.JoinStrategy extends Enum<Table.JoinStrategy>
Enum Constant and Description |
---|
CREATE_GROUPS
if there is not an existing group, create it
|
DEFAULT
allow the query engine to heuristically determine what should be done
|
LINEAR
linearly walk through the join key columns to create the keys
|
USE_EXISTING_GROUPS
if there is grouping information, use it; otherwise operate linearly
|
Modifier and Type | Method and Description |
---|---|
Table.GroupStrategy |
getGroupStrategy() |
static Table.JoinStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.JoinStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.JoinStrategy DEFAULT
public static final Table.JoinStrategy LINEAR
public static final Table.JoinStrategy USE_EXISTING_GROUPS
public static final Table.JoinStrategy CREATE_GROUPS
public static Table.JoinStrategy[] values()
for (Table.JoinStrategy c : Table.JoinStrategy.values()) System.out.println(c);
public static Table.JoinStrategy 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 nullpublic Table.GroupStrategy getGroupStrategy()