public enum UriPatternType extends Enum<UriPatternType>
Modifier and Type | Method and Description |
---|---|
static UriPatternMatcher |
get(UriPatternType type,
String pattern)
Returns the appropriate
UriPatternMatcher for pattern . |
static UriPatternType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriPatternType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriPatternType SERVLET
public static final UriPatternType REGEX
public static UriPatternType[] values()
for (UriPatternType c : UriPatternType.values()) System.out.println(c);
public static UriPatternType 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 nullpublic static UriPatternMatcher get(UriPatternType type, String pattern)
UriPatternMatcher
for pattern
.type
- of pattern matchingpattern
- for matching URIUriPatternMatcher
that matches the given patternCopyright © 2006–2016 Google, Inc.. All rights reserved.