public enum ProfileNumericComparator extends Enum<ProfileNumericComparator>
Java class for ProfileNumericComparator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ProfileNumericComparator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="lessThan"/>
<enumeration value="lessThanEqual"/>
<enumeration value="equal"/>
<enumeration value="notEqual"/>
<enumeration value="greaterThanEqual"/>
<enumeration value="greaterThan"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_EQUAL |
LESS_THAN |
LESS_THAN_EQUAL |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static ProfileNumericComparator |
fromValue(String v) |
String |
value() |
static ProfileNumericComparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileNumericComparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileNumericComparator LESS_THAN
public static final ProfileNumericComparator LESS_THAN_EQUAL
public static final ProfileNumericComparator EQUAL
public static final ProfileNumericComparator NOT_EQUAL
public static final ProfileNumericComparator GREATER_THAN_EQUAL
public static final ProfileNumericComparator GREATER_THAN
public static ProfileNumericComparator[] values()
for (ProfileNumericComparator c : ProfileNumericComparator.values()) System.out.println(c);
public static ProfileNumericComparator 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 ProfileNumericComparator fromValue(String v)
Copyright © 2018. All rights reserved.