org.apache.myfaces.extensions.validator.core.factory
Enum FactoryNames

java.lang.Object
  extended by java.lang.Enum<FactoryNames>
      extended by org.apache.myfaces.extensions.validator.core.factory.FactoryNames
All Implemented Interfaces:
Serializable, Comparable<FactoryNames>

public enum FactoryNames
extends Enum<FactoryNames>

Names of factories known by the FactoryFinder

Since:
1.x.1
Author:
Gerhard Petracek

Enum Constant Summary
COMPONENT_META_DATA_EXTRACTOR_FACTORY
           
EL_HELPER_FACTORY
           
FACES_MESSAGE_FACTORY
           
MESSAGE_RESOLVER_FACTORY
           
META_DATA_TRANSFORMER_FACTORY
           
RENDERKIT_WRAPPER_FACTORY
           
STORAGE_MANAGER_FACTORY
           
VALIDATION_PARAMETER_EXTRACTOR_FACTORY
           
VALIDATION_PARAMETER_FACTORY
           
VALIDATION_STRATEGY_FACTORY
           
 
Method Summary
static FactoryNames valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FactoryNames[] 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

COMPONENT_META_DATA_EXTRACTOR_FACTORY

public static final FactoryNames COMPONENT_META_DATA_EXTRACTOR_FACTORY

VALIDATION_PARAMETER_EXTRACTOR_FACTORY

public static final FactoryNames VALIDATION_PARAMETER_EXTRACTOR_FACTORY

VALIDATION_PARAMETER_FACTORY

public static final FactoryNames VALIDATION_PARAMETER_FACTORY

VALIDATION_STRATEGY_FACTORY

public static final FactoryNames VALIDATION_STRATEGY_FACTORY

MESSAGE_RESOLVER_FACTORY

public static final FactoryNames MESSAGE_RESOLVER_FACTORY

META_DATA_TRANSFORMER_FACTORY

public static final FactoryNames META_DATA_TRANSFORMER_FACTORY

FACES_MESSAGE_FACTORY

public static final FactoryNames FACES_MESSAGE_FACTORY

RENDERKIT_WRAPPER_FACTORY

public static final FactoryNames RENDERKIT_WRAPPER_FACTORY

EL_HELPER_FACTORY

public static final FactoryNames EL_HELPER_FACTORY

STORAGE_MANAGER_FACTORY

public static final FactoryNames STORAGE_MANAGER_FACTORY
Method Detail

values

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

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

valueOf

public static FactoryNames 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 © 2008-2010 The Apache Software Foundation. All Rights Reserved.