public static enum MatchTyped.MatchType extends Enum<MatchTyped.MatchType>
Enum Constant and Description |
---|
EXACT
Exact match wanted
|
PARTIAL
Partial match wanted, like prefix, contains, etc.
|
Modifier and Type | Method and Description |
---|---|
static MatchTyped.MatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchTyped.MatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchTyped.MatchType EXACT
public static final MatchTyped.MatchType PARTIAL
public static MatchTyped.MatchType[] values()
for (MatchTyped.MatchType c : MatchTyped.MatchType.values()) System.out.println(c);
public static MatchTyped.MatchType 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 © 2005–2015 Sonatype, Inc.. All rights reserved.