public static enum ProcessCompleted.Status extends Enum<ProcessCompleted.Status>
Enum Constant and Description |
---|
Fail
Process failed.
|
Success
Process completed succcesfully.
|
Modifier and Type | Method and Description |
---|---|
static ProcessCompleted.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessCompleted.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessCompleted.Status Success
public static final ProcessCompleted.Status Fail
public static ProcessCompleted.Status[] values()
for (ProcessCompleted.Status c : ProcessCompleted.Status.values()) System.out.println(c);
public static ProcessCompleted.Status 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 © 2013-2015 JBoss by Red Hat. All Rights Reserved.