|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Assertion.Result>
csheets.ext.assertion.Assertion.Result
public static enum Assertion.Result
Enumeration indicating the result of a validation of a value.
| Enum Constant Summary | |
|---|---|
FAILED
Indicates the assertion failed. |
|
NAN
Indicates the assertion failed because the data was not a number. |
|
NO_DATA
Indicates there was no data to validate. |
|
OK
Indicates the assertion succeeded. |
|
| Method Summary | |
|---|---|
static Assertion.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Assertion.Result[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Assertion.Result OK
public static final Assertion.Result FAILED
public static final Assertion.Result NO_DATA
public static final Assertion.Result NAN
| Method Detail |
|---|
public static final Assertion.Result[] values()
for(Assertion.Result c : Assertion.Result.values())
System.out.println(c);
public static Assertion.Result valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||