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 and Description |
|---|
BETWEEN |
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_EQUAL_TO |
LESS_THAN |
LESS_THAN_EQUAL_TO |
LIKE |
NOT_EQUAL_TO |
NULL_CHECK |
| Modifier and Type | Method and Description |
|---|---|
static ComparisonOperatorType |
fromValue(String v) |
String |
value() |
static ComparisonOperatorType |
valueOf(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.
|
public static final ComparisonOperatorType LESS_THAN
public static final ComparisonOperatorType GREATER_THAN
public static final ComparisonOperatorType LESS_THAN_EQUAL_TO
public static final ComparisonOperatorType GREATER_THAN_EQUAL_TO
public static final ComparisonOperatorType EQUAL_TO
public static final ComparisonOperatorType NOT_EQUAL_TO
public static final ComparisonOperatorType LIKE
public static final ComparisonOperatorType BETWEEN
public static final ComparisonOperatorType NULL_CHECK
public static ComparisonOperatorType[] values()
for (ComparisonOperatorType c : ComparisonOperatorType.values()) System.out.println(c);
public static ComparisonOperatorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ComparisonOperatorType fromValue(String v)
Copyright © 2016. All rights reserved.