public enum PKNumberStyle extends Enum<PKNumberStyle>
| Enum Constant and Description |
|---|
PKNumberStyleDecimal |
PKNumberStylePercent |
PKNumberStyleScientific |
PKNumberStyleSpellOut |
| Modifier and Type | Method and Description |
|---|---|
static PKNumberStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PKNumberStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PKNumberStyle PKNumberStyleDecimal
public static final PKNumberStyle PKNumberStylePercent
public static final PKNumberStyle PKNumberStyleScientific
public static final PKNumberStyle PKNumberStyleSpellOut
public static PKNumberStyle[] values()
for (PKNumberStyle c : PKNumberStyle.values()) System.out.println(c);
public static PKNumberStyle 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–2015. All rights reserved.