com.axibase.tsd.model.data.series
Enum JoinType

java.lang.Object
  extended by java.lang.Enum<JoinType>
      extended by com.axibase.tsd.model.data.series.JoinType
All Implemented Interfaces:
Serializable, Comparable<JoinType>

public enum JoinType
extends Enum<JoinType>

Author:
Nikolay Malevanny.

Enum Constant Summary
AVG
           
COUNT
           
MAX
           
MIN
           
PERCENTILE_50
           
PERCENTILE_75
           
PERCENTILE_90
           
PERCENTILE_95
           
PERCENTILE_99
           
PERCENTILE_995
           
PERCENTILE_999
           
STANDARD_DEVIATION
           
SUM
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.