Enum Constant and Description |
---|
FALSE_NEGATIVE |
FALSE_POSITIVE |
TRUE_NEGATIVE |
TRUE_POSITIVE |
COMPARATOR
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
javax.swing.Icon |
getIcon() |
java.lang.String |
getId() |
java.lang.String |
getName() |
java.lang.Object |
getOwner() |
static ErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorType TRUE_NEGATIVE
public static final ErrorType TRUE_POSITIVE
public static final ErrorType FALSE_POSITIVE
public static final ErrorType FALSE_NEGATIVE
public static ErrorType[] values()
for (ErrorType c : ErrorType.values()) System.out.println(c);
public static ErrorType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDescription()
getDescription
in interface Identity