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