public static enum EventCriteria.Oper extends Enum<EventCriteria.Oper>
Enum Constant and Description |
---|
EQUALS
Equals : =
|
GT
Greater Than : >
|
GTE
Greater Than Equals : >=
|
LT
Less Than : <
|
LTE
Less Than Equals : <=
|
Modifier and Type | Method and Description |
---|---|
String |
getQueryValue() |
static EventCriteria.Oper |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventCriteria.Oper[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventCriteria.Oper LT
public static final EventCriteria.Oper GT
public static final EventCriteria.Oper LTE
public static final EventCriteria.Oper GTE
public static final EventCriteria.Oper EQUALS
public static EventCriteria.Oper[] values()
for (EventCriteria.Oper c : EventCriteria.Oper.values()) System.out.println(c);
public static EventCriteria.Oper 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 getQueryValue()
Copyright © 2017. All rights reserved.