public enum STBoolOperator extends Enum<STBoolOperator>
Java class for ST_BoolOperator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_BoolOperator">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="none"/>
<enumeration value="equ"/>
<enumeration value="gte"/>
<enumeration value="lte"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EQU
Equal
|
GTE
Greater Than or Equal to
|
LTE
Less Than or Equal to
|
NONE
None
|
| Modifier and Type | Method and Description |
|---|---|
static STBoolOperator |
fromValue(String v) |
String |
value() |
static STBoolOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STBoolOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STBoolOperator NONE
public static final STBoolOperator EQU
public static final STBoolOperator GTE
public static final STBoolOperator LTE
public static STBoolOperator[] values()
for (STBoolOperator c : STBoolOperator.values()) System.out.println(c);
public static STBoolOperator 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 STBoolOperator fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.