com.axibase.tsd.model.data
Enum SeriesType

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

public enum SeriesType
extends Enum<SeriesType>

Author:
Nikolay Malevanny.

Enum Constant Summary
AVG
           
COUNT
           
DELTA
           
DETAIL
           
FIRST
           
LAST
           
MAX
           
MIN
           
PERCENTILE_50
           
PERCENTILE_75
           
PERCENTILE_90
           
PERCENTILE_95
           
PERCENTILE_99
           
PERCENTILE_995
           
PERCENTILE_999
           
STANDARD_DEVIATION
           
SUM
           
WAVG
           
WTAVG
           
 
Method Summary
static SeriesType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SeriesType[] 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

DETAIL

public static final SeriesType DETAIL

COUNT

public static final SeriesType COUNT

MIN

public static final SeriesType MIN

MAX

public static final SeriesType MAX

AVG

public static final SeriesType AVG

SUM

public static final SeriesType SUM

PERCENTILE_999

public static final SeriesType PERCENTILE_999

PERCENTILE_995

public static final SeriesType PERCENTILE_995

PERCENTILE_99

public static final SeriesType PERCENTILE_99

PERCENTILE_95

public static final SeriesType PERCENTILE_95

PERCENTILE_90

public static final SeriesType PERCENTILE_90

PERCENTILE_75

public static final SeriesType PERCENTILE_75

PERCENTILE_50

public static final SeriesType PERCENTILE_50

STANDARD_DEVIATION

public static final SeriesType STANDARD_DEVIATION

FIRST

public static final SeriesType FIRST

LAST

public static final SeriesType LAST

DELTA

public static final SeriesType DELTA

WAVG

public static final SeriesType WAVG

WTAVG

public static final SeriesType WTAVG
Method Detail

values

public static SeriesType[] 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 (SeriesType c : SeriesType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SeriesType 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.