public static enum ProcessStatus.ProcessStatusCode extends Enum<ProcessStatus.ProcessStatusCode>
Enum Constant and Description |
---|
Cancelled
The process has been cancelled
|
Failed
The process has finshed with a failure
|
Finished
The process has finished normally
|
NotAccepted
The process has not been accepted by the server
|
Running
The process is being executed
|
Waiting
The process has been accepted but is not yet running
|
Modifier and Type | Method and Description |
---|---|
static ProcessStatus.ProcessStatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessStatus.ProcessStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessStatus.ProcessStatusCode NotAccepted
public static final ProcessStatus.ProcessStatusCode Waiting
public static final ProcessStatus.ProcessStatusCode Running
public static final ProcessStatus.ProcessStatusCode Finished
public static final ProcessStatus.ProcessStatusCode Failed
public static final ProcessStatus.ProcessStatusCode Cancelled
public static ProcessStatus.ProcessStatusCode[] values()
for (ProcessStatus.ProcessStatusCode c : ProcessStatus.ProcessStatusCode.values()) System.out.println(c);
public static ProcessStatus.ProcessStatusCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018 Zanata Project. All rights reserved.