public static enum RequestFieldMatcher.MatcherType extends java.lang.Enum<RequestFieldMatcher.MatcherType>
| Enum Constant and Description |
|---|
EXACT |
GLOB |
JSON |
JSONPARTIAL |
JSONPATH |
REGEX |
XML |
XPATH |
| Modifier and Type | Method and Description |
|---|---|
static RequestFieldMatcher.MatcherType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static RequestFieldMatcher.MatcherType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestFieldMatcher.MatcherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestFieldMatcher.MatcherType EXACT
public static final RequestFieldMatcher.MatcherType GLOB
public static final RequestFieldMatcher.MatcherType REGEX
public static final RequestFieldMatcher.MatcherType XML
public static final RequestFieldMatcher.MatcherType XPATH
public static final RequestFieldMatcher.MatcherType JSON
public static final RequestFieldMatcher.MatcherType JSONPARTIAL
public static final RequestFieldMatcher.MatcherType JSONPATH
public static RequestFieldMatcher.MatcherType[] values()
for (RequestFieldMatcher.MatcherType c : RequestFieldMatcher.MatcherType.values()) System.out.println(c);
public static RequestFieldMatcher.MatcherType 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 static RequestFieldMatcher.MatcherType fromValue(java.lang.String value)
public java.lang.String getValue()