public static enum DslRegexExtractor.TargetField extends Enum<DslRegexExtractor.TargetField> implements EnumParam.EnumPropertyValue
| Enum Constant and Description |
|---|
REQUEST_HEADERS
Applies the regular extractor to request headers.
|
REQUEST_URL
Applies the regular extractor to the request URL.
|
RESPONSE_BODY
Applies the regular extractor to the plain string of the response body.
|
RESPONSE_BODY_AS_DOCUMENT
Applies the regular extractor to the string representation obtained from parsing the response
body with Apache Tika.
|
RESPONSE_BODY_UNESCAPED
Applies the regular extractor to the response body replacing all HTML escape codes.
|
RESPONSE_CODE
Applies the regular extractor to response code.
|
RESPONSE_HEADERS
Applies the regular extractor to response headers.
|
RESPONSE_MESSAGE
Applies the regular extractor to response message.
|
| Modifier and Type | Method and Description |
|---|---|
String |
propertyValue() |
static DslRegexExtractor.TargetField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslRegexExtractor.TargetField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslRegexExtractor.TargetField RESPONSE_BODY
public static final DslRegexExtractor.TargetField RESPONSE_BODY_UNESCAPED
public static final DslRegexExtractor.TargetField RESPONSE_BODY_AS_DOCUMENT
public static final DslRegexExtractor.TargetField RESPONSE_HEADERS
public static final DslRegexExtractor.TargetField REQUEST_HEADERS
public static final DslRegexExtractor.TargetField REQUEST_URL
public static final DslRegexExtractor.TargetField RESPONSE_CODE
public static final DslRegexExtractor.TargetField RESPONSE_MESSAGE
public static DslRegexExtractor.TargetField[] values()
for (DslRegexExtractor.TargetField c : DslRegexExtractor.TargetField.values()) System.out.println(c);
public static DslRegexExtractor.TargetField 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 String propertyValue()
propertyValue in interface EnumParam.EnumPropertyValueCopyright © 2024. All rights reserved.