public enum STItemType extends Enum<STItemType>
Java class for ST_ItemType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ItemType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="data"/>
<enumeration value="default"/>
<enumeration value="sum"/>
<enumeration value="countA"/>
<enumeration value="avg"/>
<enumeration value="max"/>
<enumeration value="min"/>
<enumeration value="product"/>
<enumeration value="count"/>
<enumeration value="stdDev"/>
<enumeration value="stdDevP"/>
<enumeration value="var"/>
<enumeration value="varP"/>
<enumeration value="grand"/>
<enumeration value="blank"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AVG |
BLANK |
COUNT |
COUNT_A |
DATA |
DEFAULT |
GRAND |
MAX |
MIN |
PRODUCT |
STD_DEV |
STD_DEV_P |
SUM |
VAR |
VAR_P |
| Modifier and Type | Method and Description |
|---|---|
static STItemType |
fromValue(String v) |
String |
value() |
static STItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STItemType DATA
public static final STItemType DEFAULT
public static final STItemType SUM
public static final STItemType COUNT_A
public static final STItemType AVG
public static final STItemType MAX
public static final STItemType MIN
public static final STItemType PRODUCT
public static final STItemType COUNT
public static final STItemType STD_DEV
public static final STItemType STD_DEV_P
public static final STItemType VAR
public static final STItemType VAR_P
public static final STItemType GRAND
public static final STItemType BLANK
public static STItemType[] values()
for (STItemType c : STItemType.values()) System.out.println(c);
public static STItemType 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 STItemType fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.