private static enum Strings.State extends Enum<Strings.State>
| Enum Constant and Description |
|---|
END |
EXPONENT |
EXPONENT_SIGN |
FRACTIONAL |
INTEGER |
NONE |
SIGN |
| Modifier and Type | Method and Description |
|---|---|
static Strings.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Strings.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Strings.State NONE
public static final Strings.State SIGN
public static final Strings.State INTEGER
public static final Strings.State FRACTIONAL
public static final Strings.State EXPONENT_SIGN
public static final Strings.State EXPONENT
public static final Strings.State END
public static Strings.State[] values()
for (Strings.State c : Strings.State.values()) System.out.println(c);
public static Strings.State 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 © 2018. All rights reserved.