atg.epub.project
Class ProcessEnumStatus

java.lang.Object
  extended by atg.epub.project.ProcessEnumStatus
All Implemented Interfaces:
java.io.Serializable

public class ProcessEnumStatus
extends java.lang.Object
implements java.io.Serializable

This class holds the value of the Process.status property. That property is an "enumerated" type, meaning that it has a predefined set of allowed values. Each of those values has an associated String "tag", but the values themselves are instances of this class. The instances can be retrieved by calling the getter method corresonding to the desired value. Each value is a singleton, meaning that "==" and "equals" will have the same result when testing for equlity. The following describes which getter should be used to obtain a value representing a particular tag:

TagGetter
EditgetEdit()
RunninggetRunning()
EditRunninggetEditRunning()
DeployedgetDeployed()
CompletedgetCompleted()

See Also:
Serialized Form

Constructor Summary
ProcessEnumStatus()
           
ProcessEnumStatus(java.lang.String pTag, java.lang.Object pValue)
           
 
Method Summary
static ProcessEnumStatus getCompleted()
          Returns the instance representing the String value "Completed"
static ProcessEnumStatus getDeployed()
          Returns the instance representing the String value "Deployed"
static ProcessEnumStatus getEdit()
          Returns the instance representing the String value "Edit"
static ProcessEnumStatus getEditRunning()
          Returns the instance representing the String value "EditRunning"
static ProcessEnumStatus getRunning()
          Returns the instance representing the String value "Running"
 java.lang.String toString()
          Returns the String value represented by this instance
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProcessEnumStatus

public ProcessEnumStatus(java.lang.String pTag,
                         java.lang.Object pValue)

ProcessEnumStatus

public ProcessEnumStatus()
Method Detail

getEdit

public static ProcessEnumStatus getEdit()

Returns the instance representing the String value "Edit"


getRunning

public static ProcessEnumStatus getRunning()

Returns the instance representing the String value "Running"


getEditRunning

public static ProcessEnumStatus getEditRunning()

Returns the instance representing the String value "EditRunning"


getDeployed

public static ProcessEnumStatus getDeployed()

Returns the instance representing the String value "Deployed"


getCompleted

public static ProcessEnumStatus getCompleted()

Returns the instance representing the String value "Completed"


toString

public java.lang.String toString()

Returns the String value represented by this instance

Overrides:
toString in class java.lang.Object