public static enum TomlTokenizer.NumberType extends java.lang.Enum<TomlTokenizer.NumberType>
| Enum Constant and Description |
|---|
BINARY |
FLOAT |
HEXADECIMAL |
OCTAL |
| Modifier and Type | Method and Description |
|---|---|
static TomlTokenizer.NumberType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TomlTokenizer.NumberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TomlTokenizer.NumberType BINARY
public static final TomlTokenizer.NumberType FLOAT
public static final TomlTokenizer.NumberType HEXADECIMAL
public static final TomlTokenizer.NumberType OCTAL
public static TomlTokenizer.NumberType[] values()
for (TomlTokenizer.NumberType c : TomlTokenizer.NumberType.values()) System.out.println(c);
public static TomlTokenizer.NumberType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null