public static enum SimplePredicate.Operator extends Enum<SimplePredicate.Operator>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="equal"/>
<enumeration value="notEqual"/>
<enumeration value="lessThan"/>
<enumeration value="lessOrEqual"/>
<enumeration value="greaterThan"/>
<enumeration value="greaterOrEqual"/>
<enumeration value="isMissing"/>
<enumeration value="isNotMissing"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
IS_MISSING |
IS_NOT_MISSING |
LESS_OR_EQUAL |
LESS_THAN |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static SimplePredicate.Operator |
fromValue(String v) |
String |
value() |
static SimplePredicate.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimplePredicate.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimplePredicate.Operator EQUAL
public static final SimplePredicate.Operator NOT_EQUAL
public static final SimplePredicate.Operator LESS_THAN
public static final SimplePredicate.Operator LESS_OR_EQUAL
public static final SimplePredicate.Operator GREATER_THAN
public static final SimplePredicate.Operator GREATER_OR_EQUAL
public static final SimplePredicate.Operator IS_MISSING
public static final SimplePredicate.Operator IS_NOT_MISSING
public static SimplePredicate.Operator[] values()
for (SimplePredicate.Operator c : SimplePredicate.Operator.values()) System.out.println(c);
public static SimplePredicate.Operator 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 SimplePredicate.Operator fromValue(String v)
Copyright © 2014 University of Tartu. All Rights Reserved.