org.apache.myfaces.extensions.validator.core
Enum CustomInformation

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

public enum CustomInformation
extends Enum<CustomInformation>

ExtVal artifacts supported by the InformationProviderBean

Since:
1.x.1
Author:
Gerhard Petracek

Enum Constant Summary
BASE_PACKAGE
           
COMPONENT_INITIALIZER
           
COMPONENT_META_DATA_EXTRACTOR
           
COMPONENT_META_DATA_EXTRACTOR_FACTORY
           
FACES_MESSAGE_FACTORY
           
MESSAGE_BUNDLE_NAME
           
MESSAGE_RESOLVER_FACTORY
           
META_DATA_EXTRACTION_INTERCEPTOR
           
META_DATA_STORAGE_FILTER
           
META_DATA_TO_VALIDATION_STRATEGY_NAME_MAPPER
           
META_DATA_TRANSFORMER_FACTORY
           
META_DATA_TRANSFORMER_POSTFIX
           
PROPERTY_VALIDATION_INTERCEPTOR
           
STARTUP_LISTENER
           
STATIC_STRATEGY_MAPPING_SOURCE
           
STORAGE_MANAGER_FACTORY
           
VALIDATION_ERROR_MESSAGE_RESOLVER_POSTFIX
           
VALIDATION_EXCEPTION_INTERCEPTOR
           
VALIDATION_PARAMETER_EXTRACTOR
           
VALIDATION_PARAMETER_EXTRACTOR_FACTORY
           
VALIDATION_PARAMETER_FACTORY
           
VALIDATION_STRATEGY_FACTORY
           
VALIDATION_STRATEGY_POSTFIX
           
VALIDATION_STRATEGY_TO_META_DATA_TRANSFORMER_NAME_MAPPER
           
VALIDATION_STRATEGY_TO_MSG_RESOLVER_NAME_MAPPER
           
 
Method Summary
static CustomInformation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CustomInformation[] 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

BASE_PACKAGE

public static final CustomInformation BASE_PACKAGE

COMPONENT_META_DATA_EXTRACTOR

public static final CustomInformation COMPONENT_META_DATA_EXTRACTOR

VALIDATION_PARAMETER_EXTRACTOR

public static final CustomInformation VALIDATION_PARAMETER_EXTRACTOR

VALIDATION_STRATEGY_POSTFIX

public static final CustomInformation VALIDATION_STRATEGY_POSTFIX

VALIDATION_ERROR_MESSAGE_RESOLVER_POSTFIX

public static final CustomInformation VALIDATION_ERROR_MESSAGE_RESOLVER_POSTFIX

META_DATA_TRANSFORMER_POSTFIX

public static final CustomInformation META_DATA_TRANSFORMER_POSTFIX

VALIDATION_STRATEGY_TO_MSG_RESOLVER_NAME_MAPPER

public static final CustomInformation VALIDATION_STRATEGY_TO_MSG_RESOLVER_NAME_MAPPER

META_DATA_TO_VALIDATION_STRATEGY_NAME_MAPPER

public static final CustomInformation META_DATA_TO_VALIDATION_STRATEGY_NAME_MAPPER

VALIDATION_STRATEGY_TO_META_DATA_TRANSFORMER_NAME_MAPPER

public static final CustomInformation VALIDATION_STRATEGY_TO_META_DATA_TRANSFORMER_NAME_MAPPER

STARTUP_LISTENER

public static final CustomInformation STARTUP_LISTENER

COMPONENT_INITIALIZER

public static final CustomInformation COMPONENT_INITIALIZER

VALIDATION_EXCEPTION_INTERCEPTOR

public static final CustomInformation VALIDATION_EXCEPTION_INTERCEPTOR

PROPERTY_VALIDATION_INTERCEPTOR

public static final CustomInformation PROPERTY_VALIDATION_INTERCEPTOR

META_DATA_EXTRACTION_INTERCEPTOR

public static final CustomInformation META_DATA_EXTRACTION_INTERCEPTOR

MESSAGE_RESOLVER_FACTORY

public static final CustomInformation MESSAGE_RESOLVER_FACTORY

VALIDATION_STRATEGY_FACTORY

public static final CustomInformation VALIDATION_STRATEGY_FACTORY

COMPONENT_META_DATA_EXTRACTOR_FACTORY

public static final CustomInformation COMPONENT_META_DATA_EXTRACTOR_FACTORY

VALIDATION_PARAMETER_EXTRACTOR_FACTORY

public static final CustomInformation VALIDATION_PARAMETER_EXTRACTOR_FACTORY

VALIDATION_PARAMETER_FACTORY

public static final CustomInformation VALIDATION_PARAMETER_FACTORY

META_DATA_TRANSFORMER_FACTORY

public static final CustomInformation META_DATA_TRANSFORMER_FACTORY

FACES_MESSAGE_FACTORY

public static final CustomInformation FACES_MESSAGE_FACTORY

STORAGE_MANAGER_FACTORY

public static final CustomInformation STORAGE_MANAGER_FACTORY

MESSAGE_BUNDLE_NAME

public static final CustomInformation MESSAGE_BUNDLE_NAME

STATIC_STRATEGY_MAPPING_SOURCE

public static final CustomInformation STATIC_STRATEGY_MAPPING_SOURCE

META_DATA_STORAGE_FILTER

public static final CustomInformation META_DATA_STORAGE_FILTER
Method Detail

values

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

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

valueOf

public static CustomInformation 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.