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