public enum EJoinType extends Enum<EJoinType>
Enum Constant and Description |
---|
anti |
asof |
caseJoin |
cross |
crossapply |
full |
fullouter |
inner |
join |
left |
leftanti |
leftouter |
leftsemi |
natural |
natural_full |
natural_fullouter |
natural_inner |
natural_left |
natural_leftouter |
natural_right |
natural_rightouter |
nested |
outerapply |
right |
rightouter |
semi |
straight |
union |
Modifier and Type | Method and Description |
---|---|
static EJoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EJoinType rightouter
public static final EJoinType crossapply
public static final EJoinType outerapply
public static final EJoinType natural_full
public static final EJoinType natural_fullouter
public static final EJoinType natural_inner
public static final EJoinType natural_left
public static final EJoinType natural_right
public static final EJoinType natural_leftouter
public static final EJoinType natural_rightouter
public static EJoinType[] values()
for (EJoinType c : EJoinType.values()) System.out.println(c);
public static EJoinType 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