public static enum YamlContract.MatchingType extends Enum<YamlContract.MatchingType>
Enum Constant and Description |
---|
absent |
binary_equal_to |
containing |
equal_to |
equal_to_json |
equal_to_xml |
matching |
not_matching |
Modifier and Type | Method and Description |
---|---|
static YamlContract.MatchingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YamlContract.MatchingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YamlContract.MatchingType equal_to
public static final YamlContract.MatchingType containing
public static final YamlContract.MatchingType matching
public static final YamlContract.MatchingType not_matching
public static final YamlContract.MatchingType equal_to_json
public static final YamlContract.MatchingType equal_to_xml
public static final YamlContract.MatchingType absent
public static final YamlContract.MatchingType binary_equal_to
public static YamlContract.MatchingType[] values()
for (YamlContract.MatchingType c : YamlContract.MatchingType.values()) System.out.println(c);
public static YamlContract.MatchingType 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 © 2016–2021 Spring. All rights reserved.