public static enum Join.Type extends Enum<Join.Type>
| Enum Constant and Description |
|---|
CROSS |
FULL |
IMPLICIT |
INNER |
LEFT |
RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static Join.Type |
valueOf(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 CROSS
public static final Join.Type INNER
public static final Join.Type LEFT
public static final Join.Type RIGHT
public static final Join.Type FULL
public static final Join.Type IMPLICIT
public static Join.Type[] values()
for (Join.Type c : Join.Type.values()) System.out.println(c);
public static Join.Type 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 © 2012–2023. All rights reserved.