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