|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<JoinType>
org.sql.generation.api.grammar.query.joins.JoinType
public enum JoinType
This enum represents the join type, used in QualifiedJoinedTable and NaturalJoinedTable. Is one of
INNER, LEFT_OUTER, RIGHT_OUTER, or FULL_OUTER.
| Enum Constant Summary | |
|---|---|
FULL_OUTER
The FULL OUTER join. |
|
INNER
The INNER join, typically default. |
|
LEFT_OUTER
The LEFT OUTER join. |
|
RIGHT_OUTER
The RIGHT OUTER join. |
|
| Method Summary | |
|---|---|
static JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JoinType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final JoinType INNER
INNER join, typically default.
public static final JoinType LEFT_OUTER
LEFT OUTER join.
public static final JoinType RIGHT_OUTER
RIGHT OUTER join.
public static final JoinType FULL_OUTER
FULL OUTER join.
| Method Detail |
|---|
public static JoinType[] values()
for (JoinType c : JoinType.values()) System.out.println(c);
public static JoinType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||