public enum FilterPatternStyle extends java.lang.Enum<FilterPatternStyle>
| Enum Constant and Description |
|---|
ANT
Ant-style pattern matching.
|
REGEX
Regex-style pattern matching.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterPatternStyle |
defaultStyle() |
io.micronaut.core.util.PathMatcher |
getPathMatcher() |
static FilterPatternStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterPatternStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterPatternStyle ANT
AntPathMatcherpublic static final FilterPatternStyle REGEX
RegexPathMatcherpublic static FilterPatternStyle[] values()
for (FilterPatternStyle c : FilterPatternStyle.values()) System.out.println(c);
public static FilterPatternStyle 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 nullpublic io.micronaut.core.util.PathMatcher getPathMatcher()
public static FilterPatternStyle defaultStyle()