public enum MatcherBehavior extends Enum<MatcherBehavior>
| Enum Constant and Description |
|---|
CLASS_FIRST
Check for matches on an class first before using the
current path matcher
|
PATH_FIRST
Check for matches against the current path first before
looking for a matcher on the class
|
| Modifier and Type | Method and Description |
|---|---|
static MatcherBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatcherBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatcherBehavior CLASS_FIRST
public static final MatcherBehavior PATH_FIRST
public static MatcherBehavior[] values()
for (MatcherBehavior c : MatcherBehavior.values()) System.out.println(c);
public static MatcherBehavior 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 © 2021. All rights reserved.