java.io.Serializable, java.lang.Comparable<JoinOperator>public enum JoinOperator extends java.lang.Enum<JoinOperator>
| Enum Constant | 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 | Description |
|---|---|---|
static JoinOperator |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullIntalio Inc. (C) 1999-2008. All rights reserved http://www.intalio.com