public enum MatchingMethod extends Enum<MatchingMethod>
Enum Constant and Description |
---|
COMPLETE |
EQ |
GE |
GT |
IN |
LANGUAGEPATH |
LE |
LT |
PARTIAL |
PREFIX |
SUFFIX |
Modifier and Type | Method and Description |
---|---|
static MatchingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchingMethod COMPLETE
public static final MatchingMethod PREFIX
public static final MatchingMethod SUFFIX
public static final MatchingMethod PARTIAL
public static final MatchingMethod LANGUAGEPATH
public static final MatchingMethod IN
public static final MatchingMethod EQ
public static final MatchingMethod GT
public static final MatchingMethod GE
public static final MatchingMethod LT
public static final MatchingMethod LE
public static MatchingMethod[] values()
for (MatchingMethod c : MatchingMethod.values()) System.out.println(c);
public static MatchingMethod 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 null