Package com.github.eikecochu.sqlbuilder
Enum ConditionValue.ConditionValueType
- java.lang.Object
-
- java.lang.Enum<ConditionValue.ConditionValueType>
-
- com.github.eikecochu.sqlbuilder.ConditionValue.ConditionValueType
-
- All Implemented Interfaces:
QueryPart,java.io.Serializable,java.lang.Comparable<ConditionValue.ConditionValueType>
- Enclosing class:
- ConditionValue<T extends Conditionable<T>>
public static enum ConditionValue.ConditionValueType extends java.lang.Enum<ConditionValue.ConditionValueType> implements QueryPart
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLANYCOLUMNEXPRESSIONVALUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringstring(QueryOptions options)Transforms this statement into an SQL stringstatic ConditionValue.ConditionValueTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConditionValue.ConditionValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALUE
public static final ConditionValue.ConditionValueType VALUE
-
COLUMN
public static final ConditionValue.ConditionValueType COLUMN
-
EXPRESSION
public static final ConditionValue.ConditionValueType EXPRESSION
-
ALL
public static final ConditionValue.ConditionValueType ALL
-
ANY
public static final ConditionValue.ConditionValueType ANY
-
-
Method Detail
-
values
public static ConditionValue.ConditionValueType[] 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 (ConditionValue.ConditionValueType c : ConditionValue.ConditionValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConditionValue.ConditionValueType 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)
Description copied from interface:QueryPartTransforms this statement into an SQL string
-
-