public enum QueryGraphRangeEnum extends Enum<QueryGraphRangeEnum>
Enum Constant and Description |
---|
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 QueryGraphRangeEnum |
getRangeOp(boolean includeStart,
boolean includeEnd,
boolean isInverted) |
String |
getStringOp() |
boolean |
isIncludeEnd() |
boolean |
isIncludeStart() |
boolean |
isRange() |
boolean |
isRangeInverted() |
static QueryGraphRangeEnum |
mapFrom(FilterOperator op) |
static QueryGraphRangeEnum |
mapFrom(RelationalOpEnum relationalOpEnum) |
static QueryGraphRangeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryGraphRangeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryGraphRangeEnum LESS
public static final QueryGraphRangeEnum LESS_OR_EQUAL
public static final QueryGraphRangeEnum GREATER_OR_EQUAL
public static final QueryGraphRangeEnum GREATER
public static final QueryGraphRangeEnum RANGE_OPEN
public static final QueryGraphRangeEnum RANGE_CLOSED
public static final QueryGraphRangeEnum RANGE_HALF_OPEN
public static final QueryGraphRangeEnum RANGE_HALF_CLOSED
public static final QueryGraphRangeEnum NOT_RANGE_OPEN
public static final QueryGraphRangeEnum NOT_RANGE_CLOSED
public static final QueryGraphRangeEnum NOT_RANGE_HALF_OPEN
public static final QueryGraphRangeEnum NOT_RANGE_HALF_CLOSED
public static QueryGraphRangeEnum[] values()
for (QueryGraphRangeEnum c : QueryGraphRangeEnum.values()) System.out.println(c);
public static QueryGraphRangeEnum 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 static QueryGraphRangeEnum mapFrom(FilterOperator op)
public static QueryGraphRangeEnum mapFrom(RelationalOpEnum relationalOpEnum)
public boolean isRange()
public boolean isIncludeStart()
public boolean isIncludeEnd()
public static QueryGraphRangeEnum getRangeOp(boolean includeStart, boolean includeEnd, boolean isInverted)
public boolean isRangeInverted()
public String getStringOp()