public enum DBJoinType extends Enum<DBJoinType>
Enum Constant and Description |
---|
CROSS
SQL Cross join
|
INNER
SQL Inner join
|
LEFT
SQL Left join
|
RIGHT
SQL Right join
|
Modifier and Type | Method and Description |
---|---|
static DBJoinType |
reversed(DBJoinType type) |
static DBJoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBJoinType LEFT
public static final DBJoinType INNER
public static final DBJoinType RIGHT
public static final DBJoinType CROSS
public static DBJoinType[] values()
for (DBJoinType c : DBJoinType.values()) System.out.println(c);
public static DBJoinType 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 DBJoinType reversed(DBJoinType type)
Copyright © 2008–2018 Apache Software Foundation. All rights reserved.