public static enum Compare.Operation extends Enum<Compare.Operation>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static Compare.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Compare.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Compare.Operation EQUAL
public static final Compare.Operation GREATER
public static final Compare.Operation LESS
public static final Compare.Operation GREATER_OR_EQUAL
public static final Compare.Operation LESS_OR_EQUAL
public static Compare.Operation[] values()
for (Compare.Operation c : Compare.Operation.values()) System.out.println(c);
public static Compare.Operation 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 © 2017 Vaadin Ltd. All rights reserved.