public enum ComparatorOperator extends Enum<ComparatorOperator>
| Enum Constant and Description |
|---|
CONTAINS |
END_WITH |
EQ |
GE |
GT |
LE |
LIKE |
LT |
START_WITH |
| Modifier and Type | Method and Description |
|---|---|
static ComparatorOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparatorOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparatorOperator EQ
public static final ComparatorOperator LE
public static final ComparatorOperator LT
public static final ComparatorOperator GE
public static final ComparatorOperator GT
public static final ComparatorOperator LIKE
public static final ComparatorOperator CONTAINS
public static final ComparatorOperator START_WITH
public static final ComparatorOperator END_WITH
public static ComparatorOperator[] values()
for (ComparatorOperator c : ComparatorOperator.values()) System.out.println(c);
public static ComparatorOperator 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 nullCopyright © 2018 Pivotal Software, Inc.. All rights reserved.