public static enum Process.EventPoint extends Enum<Process.EventPoint>
Enum Constant and Description |
---|
BATCH |
PROCESS |
PROPERTY |
TUPLE_NODE |
Modifier and Type | Method and Description |
---|---|
static Process.EventPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Process.EventPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Process.EventPoint PROCESS
public static final Process.EventPoint BATCH
public static final Process.EventPoint TUPLE_NODE
public static final Process.EventPoint PROPERTY
public static Process.EventPoint[] values()
for (Process.EventPoint c : Process.EventPoint.values()) System.out.println(c);
public static Process.EventPoint 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.