public static enum Everge.InputStatus extends Enum<Everge.InputStatus>
| Enum Constant and Description |
|---|
ALL
Process the input as a single string.
|
LINE
Process the input line-by-line.
|
REGEX
Process the input, splitting it around occurances of a regex.
|
| Modifier and Type | Method and Description |
|---|---|
static Everge.InputStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Everge.InputStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Everge.InputStatus ALL
public static final Everge.InputStatus LINE
public static final Everge.InputStatus REGEX
public static Everge.InputStatus[] values()
for (Everge.InputStatus c : Everge.InputStatus.values()) System.out.println(c);
public static Everge.InputStatus 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 © 2020. All rights reserved.