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