public enum NumberFormat extends Enum<NumberFormat>
| Modifier and Type | Field and Description |
|---|---|
static NumberFormat |
DEFAULT
The default setting when the
Format for NumberFormat is null; |
| Modifier and Type | Method and Description |
|---|---|
static NumberFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberFormat NONE
public static final NumberFormat NUMBER
public static final NumberFormat CURRENCY
public static final NumberFormat PERCENT
public static final NumberFormat DEFAULT
Format for NumberFormat is null;public static NumberFormat[] values()
for (NumberFormat c : NumberFormat.values()) System.out.println(c);
public static NumberFormat 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 © 2014–2017 Smartsheet. All rights reserved.