public enum STTotalsRowFunction extends Enum<STTotalsRowFunction>
Java class for ST_TotalsRowFunction.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TotalsRowFunction"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="none"/> <enumeration value="sum"/> <enumeration value="min"/> <enumeration value="max"/> <enumeration value="average"/> <enumeration value="count"/> <enumeration value="countNums"/> <enumeration value="stdDev"/> <enumeration value="var"/> <enumeration value="custom"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AVERAGE |
COUNT |
COUNT_NUMS |
CUSTOM |
MAX |
MIN |
NONE |
STD_DEV |
SUM |
VAR |
Modifier and Type | Method and Description |
---|---|
static STTotalsRowFunction |
fromValue(String v) |
String |
value() |
static STTotalsRowFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTotalsRowFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTotalsRowFunction NONE
public static final STTotalsRowFunction SUM
public static final STTotalsRowFunction MIN
public static final STTotalsRowFunction MAX
public static final STTotalsRowFunction AVERAGE
public static final STTotalsRowFunction COUNT
public static final STTotalsRowFunction COUNT_NUMS
public static final STTotalsRowFunction STD_DEV
public static final STTotalsRowFunction VAR
public static final STTotalsRowFunction CUSTOM
public static STTotalsRowFunction[] values()
for (STTotalsRowFunction c : STTotalsRowFunction.values()) System.out.println(c);
public static STTotalsRowFunction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static STTotalsRowFunction fromValue(String v)
Copyright © 2007-2014. All Rights Reserved.