public enum TimeAggregationOperator extends Enum<TimeAggregationOperator>
Enum Constant and Description |
---|
AVERAGE
Enum value Average.
|
LAST
Enum value Last.
|
MAXIMUM
Enum value Maximum.
|
MINIMUM
Enum value Minimum.
|
TOTAL
Enum value Total.
|
Modifier and Type | Method and Description |
---|---|
static TimeAggregationOperator |
fromString(String value)
Parses a serialized value to a TimeAggregationOperator instance.
|
String |
toString() |
static TimeAggregationOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeAggregationOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeAggregationOperator AVERAGE
public static final TimeAggregationOperator MINIMUM
public static final TimeAggregationOperator MAXIMUM
public static final TimeAggregationOperator TOTAL
public static final TimeAggregationOperator LAST
public static TimeAggregationOperator[] values()
for (TimeAggregationOperator c : TimeAggregationOperator.values()) System.out.println(c);
public static TimeAggregationOperator 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 nullpublic static TimeAggregationOperator fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<TimeAggregationOperator>
Copyright © 2019. All rights reserved.