public enum VirtualDataWindowLookupOp extends Enum<VirtualDataWindowLookupOp>
VirtualDataWindowLookupContext
.Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
static VirtualDataWindowLookupOp |
fromOpString(String stringOp)
Map the operator from a string-value.
|
String |
getOp()
Returns the string-value of the operator.
|
static VirtualDataWindowLookupOp |
valueOf(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.
|
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
public static VirtualDataWindowLookupOp[] values()
for (VirtualDataWindowLookupOp c : VirtualDataWindowLookupOp.values()) System.out.println(c);
public static VirtualDataWindowLookupOp 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 getOp()
public static VirtualDataWindowLookupOp fromOpString(String stringOp)
stringOp
- to map fromIllegalArgumentException
- if the string operator cannot be understood