public enum DeploymentMode extends Enum<DeploymentMode>
Enum Constant and Description |
---|
LOCAL
Local deployment (i.e. the component is run in the workbench)
|
REMOTE
Remote deployment (i.e. the component is run in a separate JVM)
|
Modifier and Type | Method and Description |
---|---|
static DeploymentMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentMode LOCAL
public static final DeploymentMode REMOTE
public static DeploymentMode[] values()
for (DeploymentMode c : DeploymentMode.values()) System.out.println(c);
public static DeploymentMode 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 null© Copyright IBM Corp. 2013. All rights reserved.