public enum EJoinType extends Enum<EJoinType>
Enum Constant and Description |
---|
cross |
crossapply |
full |
fullouter |
inner |
join |
left |
leftouter |
leftsemi |
natural |
natural_full |
natural_fullouter |
natural_inner |
natural_left |
natural_leftouter |
natural_right |
natural_rightouter |
nested |
outerapply |
right |
rightouter |
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 cross
public static final EJoinType natural
public static final EJoinType full
public static final EJoinType left
public static final EJoinType right
public static final EJoinType fullouter
public static final EJoinType leftouter
public static final EJoinType rightouter
public static final EJoinType inner
public static final EJoinType crossapply
public static final EJoinType outerapply
public static final EJoinType straight
public static final EJoinType union
public static final EJoinType nested
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 final EJoinType leftsemi
public static final EJoinType join
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 nullCopyright © 2019. All rights reserved.