org.tap4j.util
Enum StatusValues
java.lang.Object
java.lang.Enum<StatusValues>
org.tap4j.util.StatusValues
- All Implemented Interfaces:
- Serializable, Comparable<StatusValues>
public enum StatusValues
- extends Enum<StatusValues>
Test Status. Valid values are OK and NOT OK, represent respectively "ok" and
"not ok".
- Since:
- 1.0
OK
public static final StatusValues OK
NOT_OK
public static final StatusValues NOT_OK
values
public static StatusValues[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (StatusValues c : StatusValues.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StatusValues valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
toString
public String toString()
- Overrides:
toString
in class Enum<StatusValues>
Copyright © 2010-2012 TupiLabs. All Rights Reserved.