Package nl.b3p.csw.jaxb.filter
Enum ComparisonOperatorType
- java.lang.Object
-
- java.lang.Enum<ComparisonOperatorType>
-
- nl.b3p.csw.jaxb.filter.ComparisonOperatorType
-
- All Implemented Interfaces:
Serializable,Comparable<ComparisonOperatorType>
public enum ComparisonOperatorType extends Enum<ComparisonOperatorType>
Java class for ComparisonOperatorType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ComparisonOperatorType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="LessThan"/> <enumeration value="GreaterThan"/> <enumeration value="LessThanEqualTo"/> <enumeration value="GreaterThanEqualTo"/> <enumeration value="EqualTo"/> <enumeration value="NotEqualTo"/> <enumeration value="Like"/> <enumeration value="Between"/> <enumeration value="NullCheck"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEENEQUAL_TOGREATER_THANGREATER_THAN_EQUAL_TOLESS_THANLESS_THAN_EQUAL_TOLIKENOT_EQUAL_TONULL_CHECK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ComparisonOperatorTypefromValue(String v)Stringvalue()static ComparisonOperatorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ComparisonOperatorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LESS_THAN
public static final ComparisonOperatorType LESS_THAN
-
GREATER_THAN
public static final ComparisonOperatorType GREATER_THAN
-
LESS_THAN_EQUAL_TO
public static final ComparisonOperatorType LESS_THAN_EQUAL_TO
-
GREATER_THAN_EQUAL_TO
public static final ComparisonOperatorType GREATER_THAN_EQUAL_TO
-
EQUAL_TO
public static final ComparisonOperatorType EQUAL_TO
-
NOT_EQUAL_TO
public static final ComparisonOperatorType NOT_EQUAL_TO
-
LIKE
public static final ComparisonOperatorType LIKE
-
BETWEEN
public static final ComparisonOperatorType BETWEEN
-
NULL_CHECK
public static final ComparisonOperatorType NULL_CHECK
-
-
Method Detail
-
values
public static ComparisonOperatorType[] 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 (ComparisonOperatorType c : ComparisonOperatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComparisonOperatorType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static ComparisonOperatorType fromValue(String v)
-
-