protected static enum BetterPrefixMatcher.MatchingOutcome extends java.lang.Enum<BetterPrefixMatcher.MatchingOutcome>
Enum Constant and Description |
---|
BETTER_MATCH |
NON_MATCH |
WORSE_MATCH |
Modifier and Type | Method and Description |
---|---|
static BetterPrefixMatcher.MatchingOutcome |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BetterPrefixMatcher.MatchingOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BetterPrefixMatcher.MatchingOutcome NON_MATCH
public static final BetterPrefixMatcher.MatchingOutcome WORSE_MATCH
public static final BetterPrefixMatcher.MatchingOutcome BETTER_MATCH
public static BetterPrefixMatcher.MatchingOutcome[] values()
for (BetterPrefixMatcher.MatchingOutcome c : BetterPrefixMatcher.MatchingOutcome.values()) System.out.println(c);
public static BetterPrefixMatcher.MatchingOutcome 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