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