public enum VirtualNodeType extends Enum<VirtualNodeType>
Enum Constant and Description |
---|
MASTER
Either client side, in the master, or embedded within a deferred composite
|
WORKER
Runs within a worker nodes (potentially parallel)
|
Modifier and Type | Method and Description |
---|---|
static VirtualNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualNodeType MASTER
public static final VirtualNodeType WORKER
public static VirtualNodeType[] values()
for (VirtualNodeType c : VirtualNodeType.values()) System.out.println(c);
public static VirtualNodeType 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 © 2019 Actian Corporation. All rights reserved.