com.sun.faces.el
Enum FacesCompositeELResolver.ELResolverChainType

java.lang.Object
  extended by java.lang.Enum<FacesCompositeELResolver.ELResolverChainType>
      extended by com.sun.faces.el.FacesCompositeELResolver.ELResolverChainType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FacesCompositeELResolver.ELResolverChainType>
Enclosing class:
FacesCompositeELResolver

public static enum FacesCompositeELResolver.ELResolverChainType
extends java.lang.Enum<FacesCompositeELResolver.ELResolverChainType>

JSP indicates this CompositeELResolver instance is the JSP chain, specified in section 5.6.1 of the spec.

Faces indicates this CompositeELResolver instance is the JSF chain, specified in section 5.6.2 of the spec.


Enum Constant Summary
Faces
           
JSP
           
 
Method Summary
static FacesCompositeELResolver.ELResolverChainType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FacesCompositeELResolver.ELResolverChainType[] 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

JSP

public static final FacesCompositeELResolver.ELResolverChainType JSP

Faces

public static final FacesCompositeELResolver.ELResolverChainType Faces
Method Detail

values

public static FacesCompositeELResolver.ELResolverChainType[] 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 (FacesCompositeELResolver.ELResolverChainType c : FacesCompositeELResolver.ELResolverChainType.values())
    System.out.println(c);

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

valueOf

public static FacesCompositeELResolver.ELResolverChainType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright ? 2002-2006 Sun Microsystems, Inc. All Rights Reserved.