public static enum JoinExpression.JoinType extends Enum<JoinExpression.JoinType>
| Enum Constant and Description |
|---|
JOIN_INNER |
JOIN_INNER_FETCH |
JOIN_LEFT_OUTER |
JOIN_LEFT_OUTER_FETCH |
JOIN_RIGHT_OUTER |
JOIN_RIGHT_OUTER_FETCH |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isFetch(JoinExpression.JoinType type) |
static JoinExpression.JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinExpression.JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinExpression.JoinType JOIN_INNER
public static final JoinExpression.JoinType JOIN_LEFT_OUTER
public static final JoinExpression.JoinType JOIN_RIGHT_OUTER
public static final JoinExpression.JoinType JOIN_INNER_FETCH
public static final JoinExpression.JoinType JOIN_LEFT_OUTER_FETCH
public static final JoinExpression.JoinType JOIN_RIGHT_OUTER_FETCH
public static JoinExpression.JoinType[] values()
for (JoinExpression.JoinType c : JoinExpression.JoinType.values()) System.out.println(c);
public static JoinExpression.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 nameNullPointerException - if the argument is nullpublic static boolean isFetch(JoinExpression.JoinType type)
Copyright © 2020. All rights reserved.