public enum RelationalOperator extends Enum<RelationalOperator>
Enum Constant and Description |
---|
ALL |
CONTAINS |
EMPTY |
EQ |
EXISTS |
GT |
GTE |
IN |
LT |
LTE |
MATCHES |
NE |
NIN |
REGEX |
SIZE |
TYPE |
Modifier and Type | Method and Description |
---|---|
static RelationalOperator |
fromString(String operatorString) |
String |
toString() |
static RelationalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationalOperator GTE
public static final RelationalOperator LTE
public static final RelationalOperator EQ
public static final RelationalOperator NE
public static final RelationalOperator LT
public static final RelationalOperator GT
public static final RelationalOperator REGEX
public static final RelationalOperator NIN
public static final RelationalOperator IN
public static final RelationalOperator CONTAINS
public static final RelationalOperator ALL
public static final RelationalOperator SIZE
public static final RelationalOperator EXISTS
public static final RelationalOperator TYPE
public static final RelationalOperator MATCHES
public static final RelationalOperator EMPTY
public static RelationalOperator[] values()
for (RelationalOperator c : RelationalOperator.values()) System.out.println(c);
public static RelationalOperator 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 RelationalOperator fromString(String operatorString)
public String toString()
toString
in class Enum<RelationalOperator>
Copyright © 2024. All rights reserved.