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