Package org.hcjf.layers.query
Enum Join.JoinType
- java.lang.Object
-
- java.lang.Enum<Join.JoinType>
-
- org.hcjf.layers.query.Join.JoinType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Join.JoinType>,java.lang.constant.Constable
- Enclosing class:
- Join
public static enum Join.JoinType extends java.lang.Enum<Join.JoinType>
Join types.
-
-
Method Summary
Modifier and Type Method Description static Join.JoinTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Join.JoinType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOIN
public static final Join.JoinType JOIN
-
INNER
public static final Join.JoinType INNER
-
LEFT
public static final Join.JoinType LEFT
-
RIGHT
public static final Join.JoinType RIGHT
-
FULL
public static final Join.JoinType FULL
-
-
Method Detail
-
values
public static Join.JoinType[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Join.JoinType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-