public enum SerializeValueMatcher extends Enum<SerializeValueMatcher>
| Enum Constant and Description |
|---|
MATCH_ALWAYS |
MATCH_EXPECTED |
MATCH_EXPECTED_OR_NEW |
MATCH_NEVER |
MATCH_NON_NULL |
| Modifier and Type | Method and Description |
|---|---|
static SerializeValueMatcher |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SerializeValueMatcher[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SerializeValueMatcher MATCH_ALWAYS
public static final SerializeValueMatcher MATCH_EXPECTED
public static final SerializeValueMatcher MATCH_EXPECTED_OR_NEW
public static final SerializeValueMatcher MATCH_NON_NULL
public static final SerializeValueMatcher MATCH_NEVER
public static SerializeValueMatcher[] values()
for (SerializeValueMatcher c : SerializeValueMatcher.values()) System.out.println(c);
public static SerializeValueMatcher 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 © 2015 JBoss, a division of Red Hat. All rights reserved.