public enum NumberFormat extends Enum<NumberFormat>
| Modifier and Type | Method and Description |
|---|---|
static String |
getFormat(int count,
CharSequence digitSet) |
static String |
getFormat(NumberFormat format,
int count) |
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 ARABIC
public static final NumberFormat LETTERS
public static final NumberFormat ROMAN
public static final NumberFormat CUSTOM
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 nullpublic static String getFormat(NumberFormat format, int count)
public static String getFormat(int count, CharSequence digitSet)
Copyright © 2020. All rights reserved.