public enum DataModelCondition extends Enum<DataModelCondition>
Enum Constant and Description |
---|
IGNORE_ABSENT
Passes if actual result is missing.
|
IGNORE_MATCHED
Passes if both expected and actual is present.
|
IGNORE_UNEXPECTED
Passes if expected data is missing.
|
Modifier and Type | Method and Description |
---|---|
static DataModelCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataModelCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelCondition IGNORE_MATCHED
public static final DataModelCondition IGNORE_ABSENT
public static final DataModelCondition IGNORE_UNEXPECTED
public static DataModelCondition[] values()
for (DataModelCondition c : DataModelCondition.values()) System.out.println(c);
public static DataModelCondition 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 © 2011–2019 Asakusa Framework Team. All rights reserved.