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