public enum NumberComparison extends Enum<NumberComparison>
Enum Constant and Description |
---|
AT_LEAST |
AT_MOST |
EQUALS |
GREATHER_THAN |
IS_NOT_NULL |
IS_NULL |
LESS_THAN |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static NumberComparison |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberComparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberComparison EQUALS
public static final NumberComparison NOT_EQUALS
public static final NumberComparison LESS_THAN
public static final NumberComparison AT_MOST
public static final NumberComparison GREATHER_THAN
public static final NumberComparison AT_LEAST
public static final NumberComparison IS_NULL
public static final NumberComparison IS_NOT_NULL
public static NumberComparison[] values()
for (NumberComparison c : NumberComparison.values()) System.out.println(c);
public static NumberComparison 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 © 2022 Splunk, Inc.. All rights reserved.