public static enum ModuleDeploymentStatus.State extends java.lang.Enum<ModuleDeploymentStatus.State>
| Enum Constant and Description | 
|---|
| deployedModule was successfully deployed. | 
| failedAn error occurred during module deployment (usually on the container side). | 
| Modifier and Type | Method and Description | 
|---|---|
| static ModuleDeploymentStatus.State | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ModuleDeploymentStatus.State[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ModuleDeploymentStatus.State deployed
public static final ModuleDeploymentStatus.State failed
public static ModuleDeploymentStatus.State[] values()
for (ModuleDeploymentStatus.State c : ModuleDeploymentStatus.State.values()) System.out.println(c);
public static ModuleDeploymentStatus.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null