public enum AggregationType extends java.lang.Enum<AggregationType>
Enum Constant and Description |
---|
AVERAGE |
AVERAGE_ALBEDO |
AVERAGE_WIND_DIRECTION |
AVERAGE_WIND_VELOCITY |
AVERAGE_ZERO |
LAST |
MAXIMUM |
MINIMUM |
NONE |
SUM |
SUM_OF_AVERAGE |
SUM_RADIATION |
SUM_SECOND_TO_HOUR |
SUM_SUNSHINE |
Modifier and Type | Method and Description |
---|---|
static AggregationType |
parse(java.lang.String aggregateTypeText) |
static AggregationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationType NONE
public static final AggregationType AVERAGE
public static final AggregationType SUM
public static final AggregationType AVERAGE_WIND_DIRECTION
public static final AggregationType AVERAGE_WIND_VELOCITY
public static final AggregationType MINIMUM
public static final AggregationType MAXIMUM
public static final AggregationType AVERAGE_ZERO
public static final AggregationType AVERAGE_ALBEDO
public static final AggregationType SUM_SUNSHINE
public static final AggregationType SUM_OF_AVERAGE
public static final AggregationType SUM_RADIATION
public static final AggregationType SUM_SECOND_TO_HOUR
public static final AggregationType LAST
public static AggregationType[] values()
for (AggregationType c : AggregationType.values()) System.out.println(c);
public static AggregationType 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 static AggregationType parse(java.lang.String aggregateTypeText)