public enum DecimalModeType extends Enum<DecimalModeType>
Java class for DecimalModeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DecimalModeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Auto"/>
<enumeration value="All"/>
<enumeration value="0"/>
<enumeration value="1"/>
<enumeration value="2"/>
<enumeration value="3"/>
<enumeration value="4"/>
<enumeration value="5"/>
<enumeration value="6"/>
<enumeration value="7"/>
<enumeration value="8"/>
<enumeration value="9"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL |
AUTO |
CUSTOM_0 |
CUSTOM_1 |
CUSTOM_2 |
CUSTOM_3 |
CUSTOM_4 |
CUSTOM_5 |
CUSTOM_6 |
CUSTOM_7 |
CUSTOM_8 |
CUSTOM_9 |
| Modifier and Type | Method and Description |
|---|---|
static DecimalModeType |
fromValue(String v) |
String |
value() |
static DecimalModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecimalModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecimalModeType AUTO
public static final DecimalModeType ALL
public static final DecimalModeType CUSTOM_0
public static final DecimalModeType CUSTOM_1
public static final DecimalModeType CUSTOM_2
public static final DecimalModeType CUSTOM_3
public static final DecimalModeType CUSTOM_4
public static final DecimalModeType CUSTOM_5
public static final DecimalModeType CUSTOM_6
public static final DecimalModeType CUSTOM_7
public static final DecimalModeType CUSTOM_8
public static final DecimalModeType CUSTOM_9
public static DecimalModeType[] values()
for (DecimalModeType c : DecimalModeType.values()) System.out.println(c);
public static DecimalModeType 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 DecimalModeType fromValue(String v)
Copyright © 2014. All rights reserved.