Object
Serializable
Represents the status of a particular process instance.
Related Topics
com.bea.wli.management.runtime.ProcessRuntimeMBean#getStatus
com.bea.wli.management.runtime.ProcessInstanceInfo#getStatus
Object
ProcessStatus
Serializable
Field Summary |
public static final |
|
public static final |
|
public static final |
|
public static final |
|
public static final |
|
public static final |
|
public static final |
|
public static final |
|
public static final |
|
Method Summary |
public int |
|
public boolean |
|
public boolean |
|
public boolean |
|
public boolean |
|
public boolean |
|
public boolean |
|
public boolean |
|
public boolean |
|
public boolean |
|
public static |
|
public |
|
Methods from class java.lang. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final ProcessStatus
ABORTED
Related Topics
com.bea.wli.management.runtime.ProcessRuntimeMBean#terminate
public static final ProcessStatus
COMPLETED
public static final ProcessStatus
DEFUNCT
public static final ProcessStatus
FROZEN
for unfreezing a frozen instance.
public static final ProcessStatus
PENDING_ABORT
Related Topics
com.bea.wli.management.runtime.ProcessRuntimeMBean#terminate
public static final ProcessStatus
RUNNING
public static final ProcessStatus
SUSPENDED
for
suspending an instance, and
for resuming
a suspended process.
public static final ProcessStatus
TERMINATED
Related Topics
com.bea.wli.management.runtime.ProcessRuntimeMBean#terminate
public static final List
VALUES
ProcessStatus
enumerated types.
Method Detail |
public int intValue()Returns an integer representation for the status.
Related Topics
ProcessStatus.toProcessStatus(int)
public boolean isAborted()Returns whether this object represents an aborted instance, namely, ( this ==
ProcessStatus.ABORTED
)
public boolean isCompleted()Returns whether this object represents a completed instance, namely, (this ==
ProcessStatus.COMPLETED
)
public boolean isCompOrTerm()Returns whether this object represents an instance that has either completed normally or has been terminated, namely, (
ProcessStatus.isCompleted()
|| ProcessStatus.isTerminated()
)
public boolean isDefunct()Returns whether this object represents an instance that is pending delete, namely, (this ==
ProcessStatus.DEFUNCT
)
public boolean isFrozen()Returns whether this object represents a frozen instance, namely, (this ==
ProcessStatus.FROZEN
)
public boolean isPendingAbort()Returns whether this object represents an instance that has an abort pending, namely, (this ==
ProcessStatus.PENDING_ABORT
)
public boolean isRunning()Returns whether this object represents a running instance, namely, (this ==
ProcessStatus.RUNNING
)
public boolean isSuspended()Returns whether this object represents a suspended instance, namely, (this ==
ProcessStatus.SUSPENDED
)
public boolean isTerminated()Returns whether this object represents an instance that has been terminated, namely, (this ==
ProcessStatus.TERMINATED
)
public static ProcessStatus
toProcessStatus(int val)
Returns the ProcessStatus object whose integer representation is the given integer value.
public String
toString()
Returns string representation of this ProcessStatus