public static enum MatcherConfig.ErrorDescriptionType extends Enum<MatcherConfig.ErrorDescriptionType>
Enum Constant and Description |
---|
HAMCREST
Tries to stay as close to the original Hamcrest error messages as possible.
|
REST_ASSURED
The error descriptions are generated by REST Assured in order to make them easier to understand.
|
Modifier and Type | Method and Description |
---|---|
static MatcherConfig.ErrorDescriptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatcherConfig.ErrorDescriptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatcherConfig.ErrorDescriptionType REST_ASSURED
HAMCREST
message descriptions instead.public static final MatcherConfig.ErrorDescriptionType HAMCREST
public static MatcherConfig.ErrorDescriptionType[] values()
for (MatcherConfig.ErrorDescriptionType c : MatcherConfig.ErrorDescriptionType.values()) System.out.println(c);
public static MatcherConfig.ErrorDescriptionType 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 © 2010–2019. All rights reserved.