public enum STErrValType extends Enum<STErrValType>
Java class for ST_ErrValType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ErrValType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="cust"/>
<enumeration value="fixedVal"/>
<enumeration value="percentage"/>
<enumeration value="stdDev"/>
<enumeration value="stdErr"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUST
Custom Error Bars
|
FIXED_VAL
Fixed Value
|
PERCENTAGE
Percentage
|
STD_DEV
Standard Deviation
|
STD_ERR
Standard Error
|
| Modifier and Type | Method and Description |
|---|---|
static STErrValType |
fromValue(String v) |
String |
value() |
static STErrValType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STErrValType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STErrValType CUST
public static final STErrValType FIXED_VAL
public static final STErrValType PERCENTAGE
public static final STErrValType STD_DEV
public static final STErrValType STD_ERR
public static STErrValType[] values()
for (STErrValType c : STErrValType.values()) System.out.println(c);
public static STErrValType 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 STErrValType fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.