com.axibase.tsd.model.data.series
Enum JoinType
java.lang.Object
java.lang.Enum<JoinType>
com.axibase.tsd.model.data.series.JoinType
- All Implemented Interfaces:
- Serializable, Comparable<JoinType>
public enum JoinType
- extends Enum<JoinType>
- Author:
- Nikolay Malevanny.
|
Method Summary |
static JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
COUNT
public static final JoinType COUNT
MIN
public static final JoinType MIN
MAX
public static final JoinType MAX
AVG
public static final JoinType AVG
SUM
public static final JoinType SUM
PERCENTILE_999
public static final JoinType PERCENTILE_999
PERCENTILE_995
public static final JoinType PERCENTILE_995
PERCENTILE_99
public static final JoinType PERCENTILE_99
PERCENTILE_95
public static final JoinType PERCENTILE_95
PERCENTILE_90
public static final JoinType PERCENTILE_90
PERCENTILE_75
public static final JoinType PERCENTILE_75
PERCENTILE_50
public static final JoinType PERCENTILE_50
STANDARD_DEVIATION
public static final JoinType STANDARD_DEVIATION
values
public static JoinType[] 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 (JoinType c : JoinType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static JoinType 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.