public enum ComparisonOperatorEnum extends Enum<ComparisonOperatorEnum>
Java class for ComparisonOperatorEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ComparisonOperatorEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="equalTo"/>
<enumeration value="greaterThan"/>
<enumeration value="greaterThanOrEqualTo"/>
<enumeration value="lessThan"/>
<enumeration value="lessThanOrEqualTo"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
| Modifier and Type | Method and Description |
|---|---|
static ComparisonOperatorEnum |
fromValue(String v) |
String |
value() |
static ComparisonOperatorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperatorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOperatorEnum EQUAL_TO
public static final ComparisonOperatorEnum GREATER_THAN
public static final ComparisonOperatorEnum GREATER_THAN_OR_EQUAL_TO
public static final ComparisonOperatorEnum LESS_THAN
public static final ComparisonOperatorEnum LESS_THAN_OR_EQUAL_TO
public static ComparisonOperatorEnum[] values()
for (ComparisonOperatorEnum c : ComparisonOperatorEnum.values()) System.out.println(c);
public static ComparisonOperatorEnum 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 ComparisonOperatorEnum fromValue(String v)
Copyright © 2014–2015 Centrum dopravního výzkumu, v.v.i.. All rights reserved.