org.springframework.core.closure.support
Class ProcessStatus

java.lang.Object
  extended by org.springframework.core.enums.AbstractLabeledEnum
      extended by org.springframework.core.enums.AbstractGenericLabeledEnum
          extended by org.springframework.core.enums.ShortCodedLabeledEnum
              extended by org.springframework.core.closure.support.ProcessStatus
All Implemented Interfaces:
Serializable, Comparable, LabeledEnum

public class ProcessStatus
extends ShortCodedLabeledEnum

Enumeration of possible process statuses.

Author:
Keith Donald
See Also:
Serialized Form

Field Summary
static ProcessStatus COMPLETED
          Process has completed.
static ProcessStatus CREATED
          Process created.
static ProcessStatus RESET
          Process has been reset.
static ProcessStatus RUNNING
          Process is running.
static ProcessStatus STOPPED
          Process has stopped.
 
Fields inherited from interface org.springframework.core.enums.LabeledEnum
CODE_ORDER, DEFAULT_ORDER, LABEL_ORDER
 
Method Summary
 
Methods inherited from class org.springframework.core.enums.ShortCodedLabeledEnum
getCode, getShortCode
 
Methods inherited from class org.springframework.core.enums.AbstractGenericLabeledEnum
getLabel
 
Methods inherited from class org.springframework.core.enums.AbstractLabeledEnum
compareTo, equals, getType, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

CREATED

public static final ProcessStatus CREATED
Process created.


RUNNING

public static final ProcessStatus RUNNING
Process is running.


STOPPED

public static final ProcessStatus STOPPED
Process has stopped.


COMPLETED

public static final ProcessStatus COMPLETED
Process has completed.


RESET

public static final ProcessStatus RESET
Process has been reset.



Copyright © 2004-2008 The Spring Framework. All Rights Reserved.