public enum StopOrderOperator extends Enum<StopOrderOperator>
| Enum Constant and Description |
|---|
GTE
GTE,greater than and equal (>=) ,LTE less than and equal (<=)
|
LTE |
| Modifier and Type | Method and Description |
|---|---|
static StopOrderOperator |
find(String operator) |
String |
getDesc() |
String |
getOperator() |
static StopOrderOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StopOrderOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StopOrderOperator GTE
public static final StopOrderOperator LTE
public static StopOrderOperator[] values()
for (StopOrderOperator c : StopOrderOperator.values()) System.out.println(c);
public static StopOrderOperator 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 getOperator()
public String getDesc()
public static StopOrderOperator find(String operator)
Copyright © 2021. All rights reserved.