public static enum JoinTable.JoinType extends Enum<JoinTable.JoinType>
| Enum Constant and Description |
|---|
cross |
inner |
left |
leftouter |
outer |
right |
rightouter |
| Modifier and Type | Method and Description |
|---|---|
static JoinTable.JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinTable.JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinTable.JoinType left
public static final JoinTable.JoinType leftouter
public static final JoinTable.JoinType right
public static final JoinTable.JoinType rightouter
public static final JoinTable.JoinType inner
public static final JoinTable.JoinType outer
public static final JoinTable.JoinType cross
public static JoinTable.JoinType[] values()
for (JoinTable.JoinType c : JoinTable.JoinType.values()) System.out.println(c);
public static JoinTable.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 nullCopyright © 2018 University of Michigan. All rights reserved.