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