public enum ProcessType extends Enum<ProcessType>
| Enum Constant and Description |
|---|
DATALOAD |
GRAPH |
GROOVY |
JAVASCRIPT |
RUBY |
| Modifier and Type | Method and Description |
|---|---|
static ProcessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessType GRAPH
public static final ProcessType RUBY
public static final ProcessType JAVASCRIPT
public static final ProcessType GROOVY
public static final ProcessType DATALOAD
public static ProcessType[] values()
for (ProcessType c : ProcessType.values()) System.out.println(c);
public static ProcessType 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 © 2017. All rights reserved.