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:
java.io.Serializable, java.lang.Comparable<FactoryNames>

public enum FactoryNames
extends java.lang.Enum<FactoryNames>

Since:
1.x.1
Author:
Gerhard Petracek

Enum Constant Summary
COMPONENT_META_DATA_EXTRACTOR_FACTORY
           
EL_HELPER_FACTORY
           
MESSAGE_RESOLVER_FACTORY
           
META_DATA_TRANSFORMER_FACTORY
           
RENDERKIT_WRAPPER_FACTORY
           
VALIDATION_STRATEGY_FACTORY
           
 
Method Summary
static FactoryNames valueOf(java.lang.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'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

COMPONENT_META_DATA_EXTRACTOR_FACTORY

public static final FactoryNames COMPONENT_META_DATA_EXTRACTOR_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

RENDERKIT_WRAPPER_FACTORY

public static final FactoryNames RENDERKIT_WRAPPER_FACTORY

EL_HELPER_FACTORY

public static final FactoryNames EL_HELPER_FACTORY
Method Detail

values

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

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

valueOf

public static FactoryNames 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


Copyright © 2008 The Apache Software Foundation. All Rights Reserved.