public enum PluginContainerDeployment extends Enum<PluginContainerDeployment>
| Enum Constant and Description |
|---|
AGENT
Indicates the plugin container is deployed inside an external agent.
|
EMBEDDED
Indicates the plugin container is embedded directly inside some managed resource.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginContainerDeployment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginContainerDeployment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginContainerDeployment AGENT
public static final PluginContainerDeployment EMBEDDED
public static PluginContainerDeployment[] values()
for (PluginContainerDeployment c : PluginContainerDeployment.values()) System.out.println(c);
public static PluginContainerDeployment 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 © 2008-2014 Red Hat, Inc.. All Rights Reserved.