public enum ValueMatcherMode extends 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(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(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 static ValueMatcherMode valueOf(int ordinal)
Copyright © 2021 JBoss by Red Hat. All rights reserved.