public static enum WebMvcProperties.MatchingStrategy extends Enum<WebMvcProperties.MatchingStrategy>
| Enum Constant and Description |
|---|
ANT_PATH_MATCHER
Use the
AntPathMatcher implementation. |
PATH_PATTERN_PARSER
Use the
PathPatternParser implementation. |
| Modifier and Type | Method and Description |
|---|---|
static WebMvcProperties.MatchingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebMvcProperties.MatchingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebMvcProperties.MatchingStrategy ANT_PATH_MATCHER
AntPathMatcher implementation.public static final WebMvcProperties.MatchingStrategy PATH_PATTERN_PARSER
PathPatternParser implementation.public static WebMvcProperties.MatchingStrategy[] values()
for (WebMvcProperties.MatchingStrategy c : WebMvcProperties.MatchingStrategy.values()) System.out.println(c);
public static WebMvcProperties.MatchingStrategy 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