public enum ValueMatcherMode extends java.lang.Enum<ValueMatcherMode>
| Enum Constant and Description |
|---|
MATCH_ALWAYS |
MATCH_EXPECTED |
MATCH_EXPECTED_OR_NEW |
MATCH_NEVER |
MATCH_NON_NULL |
| Modifier and Type | Method and Description |
|---|---|
static ValueMatcherMode |
valueOf(int ordinal) |
static ValueMatcherMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueMatcherMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueMatcherMode MATCH_ALWAYS
public static final ValueMatcherMode MATCH_EXPECTED
public static final ValueMatcherMode MATCH_EXPECTED_OR_NEW
public static final ValueMatcherMode MATCH_NON_NULL
public static final ValueMatcherMode MATCH_NEVER
public static ValueMatcherMode[] values()
for (ValueMatcherMode c : ValueMatcherMode.values()) System.out.println(c);
public static ValueMatcherMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ValueMatcherMode valueOf(int ordinal)