Enum Constant and Description |
---|
AVG |
COUNT |
DIVIDE |
EQUALS |
FIRST |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LAST |
LESS_THAN |
LESS_THAN_OR_EQUAL |
MINUS |
NEXT |
NONE |
NOT_EQUALS |
PLUS |
PREV |
SUM |
TIMES |
Modifier and Type | Method and Description |
---|---|
static CEPKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CEPKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CEPKind COUNT
public static final CEPKind AVG
public static final CEPKind SUM
public static final CEPKind FIRST
public static final CEPKind LAST
public static final CEPKind PREV
public static final CEPKind NEXT
public static final CEPKind EQUALS
public static final CEPKind NOT_EQUALS
public static final CEPKind GREATER_THAN
public static final CEPKind GREATER_THAN_OR_EQUAL
public static final CEPKind LESS_THAN
public static final CEPKind LESS_THAN_OR_EQUAL
public static final CEPKind TIMES
public static final CEPKind DIVIDE
public static final CEPKind PLUS
public static final CEPKind MINUS
public static final CEPKind NONE
public static CEPKind[] values()
for (CEPKind c : CEPKind.values()) System.out.println(c);
public static CEPKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null