org.apache.shale.tiger.register
Enum FacesPhaseListener.PhaseId

java.lang.Object
  extended by java.lang.Enum<FacesPhaseListener.PhaseId>
      extended by org.apache.shale.tiger.register.FacesPhaseListener.PhaseId
All Implemented Interfaces:
Serializable, Comparable<FacesPhaseListener.PhaseId>
Enclosing class:
FacesPhaseListener

public static enum FacesPhaseListener.PhaseId
extends Enum<FacesPhaseListener.PhaseId>

Identifier for the phase that this listener is interested in participating in.


Enum Constant Summary
ANY_PHASE
           
APPLY_REQUEST_VALUES
           
INVOKE_APPLICATION
           
PROCESS_VALIDATIONS
           
RENDER_RESPONSE
           
RESTORE_VIEW
           
UPDATE_MODEL_VALUES
           
 
Method Summary
static FacesPhaseListener.PhaseId valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FacesPhaseListener.PhaseId[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ANY_PHASE

public static final FacesPhaseListener.PhaseId ANY_PHASE

RESTORE_VIEW

public static final FacesPhaseListener.PhaseId RESTORE_VIEW

APPLY_REQUEST_VALUES

public static final FacesPhaseListener.PhaseId APPLY_REQUEST_VALUES

PROCESS_VALIDATIONS

public static final FacesPhaseListener.PhaseId PROCESS_VALIDATIONS

UPDATE_MODEL_VALUES

public static final FacesPhaseListener.PhaseId UPDATE_MODEL_VALUES

INVOKE_APPLICATION

public static final FacesPhaseListener.PhaseId INVOKE_APPLICATION

RENDER_RESPONSE

public static final FacesPhaseListener.PhaseId RENDER_RESPONSE
Method Detail

values

public static final FacesPhaseListener.PhaseId[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(FacesPhaseListener.PhaseId c : FacesPhaseListener.PhaseId.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static FacesPhaseListener.PhaseId 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


Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.