Enum SPRunner.Status
- java.lang.Object
- 
- java.lang.Enum<SPRunner.Status>
- 
- com.inductiveautomation.snap.util.SPRunner.Status
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<SPRunner.Status>
 
 public static enum SPRunner.Status extends java.lang.Enum<SPRunner.Status> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SPRunner.StatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SPRunner.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Idlepublic static final SPRunner.Status Idle 
 - 
Runningpublic static final SPRunner.Status Running 
 - 
Finishedpublic static final SPRunner.Status Finished 
 - 
Cancelledpublic static final SPRunner.Status Cancelled 
 - 
Failedpublic static final SPRunner.Status Failed 
 
- 
 - 
Method Detail- 
valuespublic static SPRunner.Status[] 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 (SPRunner.Status c : SPRunner.Status.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SPRunner.Status 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
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-