public static enum JoinNode.Type extends Enum<JoinNode.Type>
| Modifier and Type | Method and Description |
|---|---|
String |
getJoinLabel() |
static JoinNode.Type |
typeConvert(Join.Type joinType) |
static JoinNode.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinNode.Type INNER
public static final JoinNode.Type LEFT
public static final JoinNode.Type RIGHT
public static final JoinNode.Type FULL
public static JoinNode.Type[] values()
for (JoinNode.Type c : JoinNode.Type.values()) System.out.println(c);
public static JoinNode.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 nullpublic String getJoinLabel()
public static JoinNode.Type typeConvert(Join.Type joinType)
Copyright © 2012–2019. All rights reserved.