public static enum MatchResult.Status extends java.lang.Enum<MatchResult.Status>
MatchResult
.Modifier and Type | Method and Description |
---|---|
static MatchResult.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MatchResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchResult.Status UNKNOWN
public static final MatchResult.Status OK
public static final MatchResult.Status NOT_FOUND
public static final MatchResult.Status ERROR
public static MatchResult.Status[] values()
for (MatchResult.Status c : MatchResult.Status.values()) System.out.println(c);
public static MatchResult.Status valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null