Enum Constant and Description |
---|
DEFAULT |
FETCH |
INNER |
LEFT |
LEFT_FETCH |
OUTER |
RIGHT |
RIGHT_FETCH |
Modifier and Type | Method and Description |
---|---|
static Join.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Join.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Join.Type DEFAULT
public static final Join.Type LEFT
public static final Join.Type LEFT_FETCH
public static final Join.Type RIGHT
public static final Join.Type RIGHT_FETCH
public static final Join.Type FETCH
public static final Join.Type INNER
public static final Join.Type OUTER
public static Join.Type[] values()
for (Join.Type c : Join.Type.values()) System.out.println(c);
public static 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 null