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