public static enum Select.Join.Type extends java.lang.Enum<Select.Join.Type>
| Enum Constant and Description |
|---|
CROSS |
INNER |
JOIN |
LEFT |
LEFT_OUTER |
NATURAL_CROSS |
NATURAL_INNER |
NATURAL_JOIN |
NATURAL_LEFT |
NATURAL_LEFT_OUTER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getKeyword() |
static Select.Join.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Select.Join.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Select.Join.Type JOIN
public static final Select.Join.Type LEFT
public static final Select.Join.Type LEFT_OUTER
public static final Select.Join.Type INNER
public static final Select.Join.Type CROSS
public static final Select.Join.Type NATURAL_JOIN
public static final Select.Join.Type NATURAL_LEFT
public static final Select.Join.Type NATURAL_LEFT_OUTER
public static final Select.Join.Type NATURAL_INNER
public static final Select.Join.Type NATURAL_CROSS
public static Select.Join.Type[] values()
for (Select.Join.Type c : Select.Join.Type.values()) System.out.println(c);
public static Select.Join.Type 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 nullpublic java.lang.String getKeyword()