public enum AggregationStatus extends Enum<AggregationStatus>
Enum Constant and Description |
---|
ALL_SAME
All the same
|
MIXED
Mixed
|
Modifier and Type | Method and Description |
---|---|
static AggregationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationStatus ALL_SAME
public static final AggregationStatus MIXED
public static AggregationStatus[] values()
for (AggregationStatus c : AggregationStatus.values()) System.out.println(c);
public static AggregationStatus 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 © 2019. All rights reserved.