Package de.ec.sql
Enum Join.JoinMode
- java.lang.Object
-
- java.lang.Enum<Join.JoinMode>
-
- de.ec.sql.Join.JoinMode
-
- All Implemented Interfaces:
QueryPart,java.io.Serializable,java.lang.Comparable<Join.JoinMode>
- Enclosing class:
- Join
public static enum Join.JoinMode extends java.lang.Enum<Join.JoinMode> implements QueryPart
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CROSS_JOININNER_JOINLEFT_JOINOUTER_JOINRIGHT_JOIN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringstring(QueryOptions options)static Join.JoinModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Join.JoinMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INNER_JOIN
public static final Join.JoinMode INNER_JOIN
-
OUTER_JOIN
public static final Join.JoinMode OUTER_JOIN
-
LEFT_JOIN
public static final Join.JoinMode LEFT_JOIN
-
RIGHT_JOIN
public static final Join.JoinMode RIGHT_JOIN
-
CROSS_JOIN
public static final Join.JoinMode CROSS_JOIN
-
-
Method Detail
-
values
public static Join.JoinMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Join.JoinMode c : Join.JoinMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Join.JoinMode 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
-
string
public java.lang.String string(QueryOptions options)
-
-