public enum Operator extends Enum<Operator>
Enum Constant and Description |
---|
CONTAINS |
EQUALS |
EXISTS |
GREATER_OR_EQUALS_THAN |
GREATER_THAN |
LESS_OR_EQUALS_THAN |
LESS_THAN |
NO_OPERATOR |
NOT_CONTAINS |
NOT_EQUALS |
NOT_EXISTS |
REG_EX |
Modifier and Type | Method and Description |
---|---|
static Operator |
createBySign(String sign) |
String |
getSign() |
static Operator |
newInstance(String sign)
creates new instance of Operator initialized with sign
|
String |
toString() |
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator EQUALS
public static final Operator NOT_EQUALS
public static final Operator GREATER_THAN
public static final Operator LESS_THAN
public static final Operator GREATER_OR_EQUALS_THAN
public static final Operator LESS_OR_EQUALS_THAN
public static final Operator EXISTS
public static final Operator NOT_EXISTS
public static final Operator CONTAINS
public static final Operator NOT_CONTAINS
public static final Operator REG_EX
public static final Operator NO_OPERATOR
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator 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 getSign()
Copyright © 2019. All rights reserved.