public static enum DslResponseAssertion.TestStringStrategy extends Enum<DslResponseAssertion.TestStringStrategy>
| Enum Constant and Description |
|---|
CONTAINS_REGEX |
EQUALS |
MATCHES_REGEX |
SUBSTRING |
| Modifier and Type | Method and Description |
|---|---|
static DslResponseAssertion.TestStringStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslResponseAssertion.TestStringStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslResponseAssertion.TestStringStrategy CONTAINS_REGEX
public static final DslResponseAssertion.TestStringStrategy MATCHES_REGEX
public static final DslResponseAssertion.TestStringStrategy SUBSTRING
public static final DslResponseAssertion.TestStringStrategy EQUALS
public static DslResponseAssertion.TestStringStrategy[] values()
for (DslResponseAssertion.TestStringStrategy c : DslResponseAssertion.TestStringStrategy.values()) System.out.println(c);
public static DslResponseAssertion.TestStringStrategy 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 nullCopyright © 2023. All rights reserved.