org.milyn.validation
Enum OnFail
java.lang.Object
java.lang.Enum<OnFail>
org.milyn.validation.OnFail
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<OnFail>
public enum OnFail
- extends java.lang.Enum<OnFail>
Validation failure type enumeration.
- Author:
- Daniel Bevenius
|
Method Summary |
static OnFail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OnFail[] |
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 |
OK
public static final OnFail OK
WARN
public static final OnFail WARN
ERROR
public static final OnFail ERROR
FATAL
public static final OnFail FATAL
values
public static final OnFail[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(OnFail c : OnFail.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static OnFail valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
Copyright © 2011. All Rights Reserved.