com.axibase.tsd.model.data.series.aggregate
Enum AggregateType
java.lang.Object
java.lang.Enum<AggregateType>
com.axibase.tsd.model.data.series.aggregate.AggregateType
- All Implemented Interfaces:
- Serializable, Comparable<AggregateType>
public enum AggregateType
- extends Enum<AggregateType>
- Author:
- Nikolay Malevanny.
|
Method Summary |
static AggregateType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AggregateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
DETAIL
public static final AggregateType DETAIL
COUNT
public static final AggregateType COUNT
MIN
public static final AggregateType MIN
MAX
public static final AggregateType MAX
AVG
public static final AggregateType AVG
SUM
public static final AggregateType SUM
PERCENTILE_999
public static final AggregateType PERCENTILE_999
PERCENTILE_995
public static final AggregateType PERCENTILE_995
PERCENTILE_99
public static final AggregateType PERCENTILE_99
PERCENTILE_95
public static final AggregateType PERCENTILE_95
PERCENTILE_90
public static final AggregateType PERCENTILE_90
PERCENTILE_75
public static final AggregateType PERCENTILE_75
PERCENTILE_50
public static final AggregateType PERCENTILE_50
STANDARD_DEVIATION
public static final AggregateType STANDARD_DEVIATION
FIRST
public static final AggregateType FIRST
LAST
public static final AggregateType LAST
DELTA
public static final AggregateType DELTA
WAVG
public static final AggregateType WAVG
WTAVG
public static final AggregateType WTAVG
THRESHOLD_COUNT
public static final AggregateType THRESHOLD_COUNT
THRESHOLD_DURATION
public static final AggregateType THRESHOLD_DURATION
THRESHOLD_PERCENT
public static final AggregateType THRESHOLD_PERCENT
values
public static AggregateType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AggregateType c : AggregateType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AggregateType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2015. All rights reserved.