public enum OuterJoinType extends Enum<OuterJoinType>
Enum Constant and Description |
---|
FULL
Full outer join.
|
INNER
Inner join.
|
LEFT
Left outer join.
|
RIGHT
Right outer join.
|
Modifier and Type | Method and Description |
---|---|
String |
getText()
Returns the operator as an expression text.
|
static OuterJoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OuterJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OuterJoinType LEFT
public static final OuterJoinType RIGHT
public static final OuterJoinType FULL
public static final OuterJoinType INNER
public static OuterJoinType[] values()
for (OuterJoinType c : OuterJoinType.values()) System.out.println(c);
public static OuterJoinType 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 String getText()