public enum ComparisonOperatorProxy extends Enum<ComparisonOperatorProxy>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
IN |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUAL |
NOT_IN |
| Modifier and Type | Method and Description |
|---|---|
static ComparisonOperatorProxy |
asEnum(cz.jirutka.rsql.parser.ast.ComparisonOperator operator) |
cz.jirutka.rsql.parser.ast.ComparisonOperator |
getOperator() |
static ComparisonOperatorProxy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperatorProxy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOperatorProxy EQUAL
public static final ComparisonOperatorProxy NOT_EQUAL
public static final ComparisonOperatorProxy GREATER_THAN
public static final ComparisonOperatorProxy GREATER_THAN_OR_EQUAL
public static final ComparisonOperatorProxy LESS_THAN
public static final ComparisonOperatorProxy LESS_THAN_OR_EQUAL
public static final ComparisonOperatorProxy IN
public static final ComparisonOperatorProxy NOT_IN
public static ComparisonOperatorProxy[] values()
for (ComparisonOperatorProxy c : ComparisonOperatorProxy.values()) System.out.println(c);
public static ComparisonOperatorProxy 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 cz.jirutka.rsql.parser.ast.ComparisonOperator getOperator()
public static ComparisonOperatorProxy asEnum(cz.jirutka.rsql.parser.ast.ComparisonOperator operator)
Copyright © 2015–2017. All rights reserved.