public enum PropertyComparisonOperator extends Enum<PropertyComparisonOperator> implements Serializable
| Enum Constant and Description |
|---|
EQ |
GT |
GTE |
IN |
IS_NULL |
LIKE |
LT |
LTE |
NEQ |
NOT_NULL |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the default description of the property comparison operator.
|
String |
getName()
Return the default name of the property comparison operator.
|
int |
getOrdinal()
Return the numeric representation of the property comparison operator.
|
String |
toString()
toString() JSON-style
|
static PropertyComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyComparisonOperator EQ
public static final PropertyComparisonOperator NEQ
public static final PropertyComparisonOperator LT
public static final PropertyComparisonOperator LTE
public static final PropertyComparisonOperator GT
public static final PropertyComparisonOperator GTE
public static final PropertyComparisonOperator IN
public static final PropertyComparisonOperator IS_NULL
public static final PropertyComparisonOperator NOT_NULL
public static final PropertyComparisonOperator LIKE
public static PropertyComparisonOperator[] values()
for (PropertyComparisonOperator c : PropertyComparisonOperator.values()) System.out.println(c);
public static PropertyComparisonOperator 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 int getOrdinal()
public String getName()
public String getDescription()
public String toString()
toString in class Enum<PropertyComparisonOperator>Copyright © 2018–2020 ODPi. All rights reserved.