public enum ParameterStatus extends java.lang.Enum<ParameterStatus>
validate()
is called.Parameter
Enum Constant and Description |
---|
INVALID |
VALID |
WARNING |
WARNING_RESET |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDetails() |
void |
setDetails(java.lang.String details)
Sets a new string containing details about the current status.
|
static ParameterStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParameterStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterStatus INVALID
public static final ParameterStatus WARNING
public static final ParameterStatus WARNING_RESET
public static final ParameterStatus VALID
public static ParameterStatus[] values()
for (ParameterStatus c : ParameterStatus.values()) System.out.println(c);
public static ParameterStatus 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 void setDetails(java.lang.String details)
details
- an explanation of the current status.public java.lang.String getDetails()