Enum Class ColumnConditionType
- All Implemented Interfaces:
Serializable, Comparable<ColumnConditionType>, Constable
Defines the type of the parameter set for a column, information for later expression setup
- Author:
- Karl Eilebrecht
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExactly one value with the aligned date after the specified one, to query greater than or equals rather than greater thanList contains two date values, first is the main date (the user-specified date), second is the aligned date after for creating a range query instead of an equalsA filter condition for the main column resp. the left side of a reference match, also used for table filter conditionsA filter condition for the reference column resp. the right side of a reference matchValues for an IN-clause, list contains at least two elementsIdentifies a match of two columns against each otherA single value comparison, parameter list contains one element -
Method Summary
Modifier and TypeMethodDescriptionstatic ColumnConditionTypeReturns the enum constant of this class with the specified name.static ColumnConditionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REFERENCE
Identifies a match of two columns against each other -
FILTER_LEFT
A filter condition for the main column resp. the left side of a reference match, also used for table filter conditions -
FILTER_RIGHT
A filter condition for the reference column resp. the right side of a reference match -
SINGLE
A single value comparison, parameter list contains one element -
IN_CLAUSE
Values for an IN-clause, list contains at least two elements -
AFTER_TODAY
Exactly one value with the aligned date after the specified one, to query greater than or equals rather than greater than -
DATE_RANGE
List contains two date values, first is the main date (the user-specified date), second is the aligned date after for creating a range query instead of an equals
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-