public static enum Aggregates.Aggregate extends java.lang.Enum<Aggregates.Aggregate>
| Enum Constant and Description |
|---|
AVG |
BOOL_COUNT |
BOOL_VALUES |
COUNT |
LAT_LON_AVG |
LAT_LON_COUNT |
LENGTH_AVG |
MAX |
MIN |
NUM_COUNT |
STRING_COUNT |
STRING_VALUES |
XYZ_AVG |
XYZ_COUNT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
static Aggregates.Aggregate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Aggregates.Aggregate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregates.Aggregate COUNT
public static final Aggregates.Aggregate NUM_COUNT
public static final Aggregates.Aggregate AVG
public static final Aggregates.Aggregate MIN
public static final Aggregates.Aggregate MAX
public static final Aggregates.Aggregate BOOL_COUNT
public static final Aggregates.Aggregate BOOL_VALUES
public static final Aggregates.Aggregate STRING_COUNT
public static final Aggregates.Aggregate STRING_VALUES
public static final Aggregates.Aggregate LAT_LON_COUNT
public static final Aggregates.Aggregate LAT_LON_AVG
public static final Aggregates.Aggregate XYZ_COUNT
public static final Aggregates.Aggregate XYZ_AVG
public static final Aggregates.Aggregate LENGTH_AVG
public static Aggregates.Aggregate[] values()
for (Aggregates.Aggregate c : Aggregates.Aggregate.values()) System.out.println(c);
public static Aggregates.Aggregate valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()