public enum NumericMode extends Enum<NumericMode>
| Enum Constant and Description |
|---|
decimalSign |
moneyZeros |
no |
start |
yes |
| Modifier and Type | Method and Description |
|---|---|
static NumericMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericMode start
public static final NumericMode yes
public static final NumericMode decimalSign
public static final NumericMode moneyZeros
public static final NumericMode no
public static NumericMode[] values()
for (NumericMode c : NumericMode.values()) System.out.println(c);
public static NumericMode 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 © 2010–2024 The DAISY Consortium. All rights reserved.