public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
contains
Contains value operator
|
endsWith
Ends with value operator
|
eq
Equal to operator
|
gt
Greater than operator
|
gte
Greater than equal to operator
|
lt
Less than operator
|
lte
Less than equal to operator
|
ne
Not equal to operator
|
startsWith
Starts with value operator
|
| Modifier and Type | Method and Description |
|---|---|
String |
getOp() |
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 eq
public static final Operator ne
public static final Operator gt
public static final Operator gte
public static final Operator lt
public static final Operator lte
public static final Operator startsWith
public static final Operator endsWith
public static final Operator contains
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 getOp()
Copyright © 2021. All rights reserved.