org.glassfish.internal.deployment
Enum ExtendedDeploymentContext.Phase
java.lang.Object
java.lang.Enum<ExtendedDeploymentContext.Phase>
org.glassfish.internal.deployment.ExtendedDeploymentContext.Phase
- All Implemented Interfaces:
- Serializable, Comparable<ExtendedDeploymentContext.Phase>
- Enclosing interface:
- ExtendedDeploymentContext
public static enum ExtendedDeploymentContext.Phase
- extends Enum<ExtendedDeploymentContext.Phase>
UNKNOWN
public static final ExtendedDeploymentContext.Phase UNKNOWN
PREPARE
public static final ExtendedDeploymentContext.Phase PREPARE
PREPARED
public static final ExtendedDeploymentContext.Phase PREPARED
LOAD
public static final ExtendedDeploymentContext.Phase LOAD
START
public static final ExtendedDeploymentContext.Phase START
STOP
public static final ExtendedDeploymentContext.Phase STOP
UNLOAD
public static final ExtendedDeploymentContext.Phase UNLOAD
CLEAN
public static final ExtendedDeploymentContext.Phase CLEAN
values
public static ExtendedDeploymentContext.Phase[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ExtendedDeploymentContext.Phase c : ExtendedDeploymentContext.Phase.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ExtendedDeploymentContext.Phase valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2012 GlassFish Community. All Rights Reserved.