public static enum MatchingStrategy.Type extends Enum<MatchingStrategy.Type>
Enum Constant and Description |
---|
ABSENT
Absence check.
|
BINARY_EQUAL_TO
Binary equality check.
|
CONTAINS
Contains check.
|
EQUAL_TO
Equality check.
|
EQUAL_TO_JSON
Equal to JSON check.
|
EQUAL_TO_XML
Equal to XML check.
|
MATCHING
Matching check.
|
NOT_MATCHING
Not matching check.
|
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static MatchingStrategy.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchingStrategy.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchingStrategy.Type EQUAL_TO
public static final MatchingStrategy.Type CONTAINS
public static final MatchingStrategy.Type MATCHING
public static final MatchingStrategy.Type NOT_MATCHING
public static final MatchingStrategy.Type EQUAL_TO_JSON
public static final MatchingStrategy.Type EQUAL_TO_XML
public static final MatchingStrategy.Type ABSENT
public static final MatchingStrategy.Type BINARY_EQUAL_TO
public static MatchingStrategy.Type[] values()
for (MatchingStrategy.Type c : MatchingStrategy.Type.values()) System.out.println(c);
public static MatchingStrategy.Type 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 final String getName()
Copyright © 2016–2019 Spring. All rights reserved.