public static enum PropertyExecutionResult.Status extends java.lang.Enum<PropertyExecutionResult.Status>
| Enum Constant and Description | 
|---|
ABORTED
Indicates that the execution of a property was
 aborted before the actual property method could be run. 
 | 
FAILED
Indicates that the execution of a property has
 failed. 
 | 
SUCCESSFUL
Indicates that the execution of a property was
 successful. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static PropertyExecutionResult.Status | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PropertyExecutionResult.Status[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PropertyExecutionResult.Status SUCCESSFUL
public static final PropertyExecutionResult.Status ABORTED
public static final PropertyExecutionResult.Status FAILED
public static PropertyExecutionResult.Status[] values()
for (PropertyExecutionResult.Status c : PropertyExecutionResult.Status.values()) System.out.println(c);
public static PropertyExecutionResult.Status 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 null