public static enum ExecutionFactory.SupportedJoinCriteria extends Enum<ExecutionFactory.SupportedJoinCriteria>
Enum Constant and Description |
---|
ANY
Indicates that any supported criteria is allowed.
|
EQUI
Indicates that only equality predicates of elements are allowed.
|
KEY
Indicates that only equality predicates between
exactly one primary and foreign key is allowed per join.
|
THETA
Indicates that any simple comparison of elements is allowed.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionFactory.SupportedJoinCriteria |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionFactory.SupportedJoinCriteria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionFactory.SupportedJoinCriteria ANY
public static final ExecutionFactory.SupportedJoinCriteria THETA
public static final ExecutionFactory.SupportedJoinCriteria EQUI
public static final ExecutionFactory.SupportedJoinCriteria KEY
public static ExecutionFactory.SupportedJoinCriteria[] values()
for (ExecutionFactory.SupportedJoinCriteria c : ExecutionFactory.SupportedJoinCriteria.values()) System.out.println(c);
public static ExecutionFactory.SupportedJoinCriteria 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 nullCopyright © 2018 JBoss by Red Hat. All rights reserved.