public static enum NumericConfig.Type extends Enum<NumericConfig.Type>
Enum Constant and Description |
---|
CURRENCY |
EURO |
FIXED |
PERCENT |
SCIENTIFIC |
STANDARD |
Modifier and Type | Method and Description |
---|---|
static NumericConfig.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericConfig.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericConfig.Type CURRENCY
public static final NumericConfig.Type FIXED
public static final NumericConfig.Type STANDARD
public static final NumericConfig.Type PERCENT
public static final NumericConfig.Type SCIENTIFIC
public static final NumericConfig.Type EURO
public static NumericConfig.Type[] values()
for (NumericConfig.Type c : NumericConfig.Type.values()) System.out.println(c);
public static NumericConfig.Type 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 nullCopyright © 2005–2024 OpenHMS. All rights reserved.