public static enum Assertion.ComparisonResult extends Enum<Assertion.ComparisonResult>
AssertableCell.assertAssertions()
Enum Constant and Description |
---|
ILLEGAL_INTERVAL
Denotes that the system generated assertion for this cell can not be generated because the
formula in this cell contains a possible illegal mathematic operation.
|
NON_EQUAL
Denotes that the user supplied assertion and the system generated assertion
associated with this cell do not represent the same range(s) of values.
|
OK
Denotes that the assertions on this cell are okay
|
Modifier and Type | Method and Description |
---|---|
String |
getErrorMsg() |
void |
setErrorMsg(String msg) |
static Assertion.ComparisonResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Assertion.ComparisonResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Assertion.ComparisonResult OK
public static final Assertion.ComparisonResult NON_EQUAL
public static final Assertion.ComparisonResult ILLEGAL_INTERVAL
public static Assertion.ComparisonResult[] values()
for (Assertion.ComparisonResult c : Assertion.ComparisonResult.values()) System.out.println(c);
public static Assertion.ComparisonResult 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 void setErrorMsg(String msg)
public String getErrorMsg()