com.sun.n1.sps.model.executor
Class TargetStatusCode

java.lang.Object
  extended by com.sun.n1.util.enum.EnumImpl
      extended by com.sun.n1.util.enumx.EnumXImpl
          extended by com.sun.n1.sps.model.executor.TargetStatusCode
All Implemented Interfaces:
Enum, EnumX

public final class TargetStatusCode
extends EnumXImpl

A strongly-typed enumeration of target status to provide for better type-checking.


Nested Class Summary
static class TargetStatusCode.Factory
          Factory for object output type enums.
 
Field Summary
static TargetStatusCode ABORTED
          Indicates a aborted status of a target.
static TargetStatusCode.Factory FACTORY
          The factory which may be used to look up TargetStatusCode by string or int value.
static TargetStatusCode FAILURE
          Indicates a failure status of a target.
static TargetStatusCode INPROGRESS
          Indicates a in progress status of a target.
static TargetStatusCode NONE
          Indicates a plan has not yet started for this target.
static TargetStatusCode SUCCESS
          Indicates a success status of a target.
static TargetStatusCode TIMED_OUT
          Indicates a timed out status of a target.
 
Method Summary
 
Methods inherited from class com.sun.n1.util.enum.EnumImpl
equals, hashCode, toInt, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.sun.n1.util.enum.Enum
toInt
 

Field Detail

FACTORY

public static final TargetStatusCode.Factory FACTORY
The factory which may be used to look up TargetStatusCode by string or int value.


NONE

public static final TargetStatusCode NONE
Indicates a plan has not yet started for this target.


SUCCESS

public static final TargetStatusCode SUCCESS
Indicates a success status of a target.


FAILURE

public static final TargetStatusCode FAILURE
Indicates a failure status of a target.


INPROGRESS

public static final TargetStatusCode INPROGRESS
Indicates a in progress status of a target.


ABORTED

public static final TargetStatusCode ABORTED
Indicates a aborted status of a target.


TIMED_OUT

public static final TargetStatusCode TIMED_OUT
Indicates a timed out status of a target.