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