org.glassfish.internal.deployment
Enum ExtendedDeploymentContext.Phase

java.lang.Object
  extended by java.lang.Enum<ExtendedDeploymentContext.Phase>
      extended by 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>


Enum Constant Summary
CLEAN
           
LOAD
           
PREPARE
           
PREPARED
           
START
           
STOP
           
UNKNOWN
           
UNLOAD
           
 
Method Summary
static ExtendedDeploymentContext.Phase valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ExtendedDeploymentContext.Phase[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.