public static enum Process.Event extends Enum<Process.Event>
Enum Constant and Description |
---|
DESTROY
When the instance is removed from Memory / EDestroyed completely
|
FAIL |
IGNORE |
INIT
When a Process is Initialized; before it Starts
|
INSTANCE
When an Instance of the Process is created on the Heap/Memory
|
START
Start of Process
|
SUCCESS |
UNINIT
When Process is un-initiated / Ends
|
Modifier and Type | Method and Description |
---|---|
static Process.Event |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Process.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Process.Event INSTANCE
public static final Process.Event INIT
public static final Process.Event START
public static final Process.Event FAIL
public static final Process.Event SUCCESS
public static final Process.Event IGNORE
public static final Process.Event UNINIT
public static final Process.Event DESTROY
public static Process.Event[] values()
for (Process.Event c : Process.Event.values()) System.out.println(c);
public static Process.Event 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. All rights reserved.