public enum JoinOperator extends Enum<JoinOperator>
Enum Constant and Description |
---|
FULL
Keyword to construct full outer join.
|
INNER
Keyword to construct inner join.
|
LEFT
Keyword to construct left outer join.
|
RIGHT
Keyword to construct right outer join.
|
Modifier and Type | Method and Description |
---|---|
static JoinOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinOperator INNER
public static final JoinOperator LEFT
public static final JoinOperator RIGHT
public static final JoinOperator FULL
public static JoinOperator[] values()
for (JoinOperator c : JoinOperator.values()) System.out.println(c);
public static JoinOperator 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 © 2013. All rights reserved.