public enum Condition extends Enum<Condition>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_EQUAL |
LESS |
LESS_EQUAL |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition EQUAL
public static final Condition NOT_EQUAL
public static final Condition GREATER
public static final Condition GREATER_EQUAL
public static final Condition LESS
public static final Condition LESS_EQUAL
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition 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 © 2012–2021 Graylog, Inc.. All rights reserved.