public static enum ADQLQueryFactory.JoinType extends java.lang.Enum<ADQLQueryFactory.JoinType>
| Enum Constant and Description |
|---|
CROSS |
INNER |
OUTER_FULL |
OUTER_LEFT |
OUTER_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static ADQLQueryFactory.JoinType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ADQLQueryFactory.JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ADQLQueryFactory.JoinType CROSS
public static final ADQLQueryFactory.JoinType INNER
public static final ADQLQueryFactory.JoinType OUTER_LEFT
public static final ADQLQueryFactory.JoinType OUTER_RIGHT
public static final ADQLQueryFactory.JoinType OUTER_FULL
public static ADQLQueryFactory.JoinType[] values()
for (ADQLQueryFactory.JoinType c : ADQLQueryFactory.JoinType.values()) System.out.println(c);
public static ADQLQueryFactory.JoinType 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