|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<VirtualDataWindowLookupOp>
com.espertech.esper.client.hook.VirtualDataWindowLookupOp
public enum VirtualDataWindowLookupOp
Enumeration for indicating the type of operator for a lookup against a virtual data window, see VirtualDataWindowLookupContext
.
Enum Constant Summary | |
---|---|
EQUALS
Equals (=). |
|
GREATER
Greater (>). |
|
GREATER_OR_EQUAL
Greater or equal (>=). |
|
LESS
Less (<). |
|
LESS_OR_EQUAL
Less or equal (<=). |
|
NOT_RANGE_CLOSED
Inverted-Range contains low and high endpoint, i.e. |
|
NOT_RANGE_HALF_CLOSED
Inverted-Range includes high endpoint but not low endpoint, i.e. |
|
NOT_RANGE_HALF_OPEN
Inverted-Range includes low endpoint but not high endpoint, i.e. |
|
NOT_RANGE_OPEN
Inverted-Range contains neither endpoint, i.e. |
|
RANGE_CLOSED
Range contains low and high endpoint, i.e. |
|
RANGE_HALF_CLOSED
Range includes high endpoint but not low endpoint, i.e. |
|
RANGE_HALF_OPEN
Range includes low endpoint but not high endpoint, i.e. |
|
RANGE_OPEN
Range contains neither endpoint, i.e. |
Method Summary | |
---|---|
static VirtualDataWindowLookupOp |
fromOpString(java.lang.String stringOp)
Map the operator from a string-value. |
java.lang.String |
getOp()
Returns the string-value of the operator. |
static VirtualDataWindowLookupOp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static VirtualDataWindowLookupOp[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final VirtualDataWindowLookupOp EQUALS
public static final VirtualDataWindowLookupOp LESS
public static final VirtualDataWindowLookupOp LESS_OR_EQUAL
public static final VirtualDataWindowLookupOp GREATER_OR_EQUAL
public static final VirtualDataWindowLookupOp GREATER
public static final VirtualDataWindowLookupOp RANGE_OPEN
public static final VirtualDataWindowLookupOp RANGE_CLOSED
public static final VirtualDataWindowLookupOp RANGE_HALF_OPEN
public static final VirtualDataWindowLookupOp RANGE_HALF_CLOSED
public static final VirtualDataWindowLookupOp NOT_RANGE_OPEN
public static final VirtualDataWindowLookupOp NOT_RANGE_CLOSED
public static final VirtualDataWindowLookupOp NOT_RANGE_HALF_OPEN
public static final VirtualDataWindowLookupOp NOT_RANGE_HALF_CLOSED
Method Detail |
---|
public static VirtualDataWindowLookupOp[] values()
for (VirtualDataWindowLookupOp c : VirtualDataWindowLookupOp.values()) System.out.println(c);
public static VirtualDataWindowLookupOp 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getOp()
public static VirtualDataWindowLookupOp fromOpString(java.lang.String stringOp)
stringOp
- to map from
java.lang.IllegalArgumentException
- if the string operator cannot be understood
|
© 2006-2015 EsperTech Inc. All rights reserved. Visit us at espertech.com |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |