org.apache.myfaces.extensions.validator.core
Enum CustomInformation
java.lang.Object
java.lang.Enum<CustomInformation>
org.apache.myfaces.extensions.validator.core.CustomInformation
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CustomInformation>
public enum CustomInformation
- extends java.lang.Enum<CustomInformation>
- Since:
- 1.x.1
- Author:
- Gerhard Petracek
Method Summary |
static CustomInformation |
valueOf(java.lang.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'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 |
BASE_PACKAGE
public static final CustomInformation BASE_PACKAGE
COMPONENT_META_DATA_EXTRACTOR
public static final CustomInformation COMPONENT_META_DATA_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
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
META_DATA_TRANSFORMER_FACTORY
public static final CustomInformation META_DATA_TRANSFORMER_FACTORY
MESSAGE_BUNDLE_NAME
public static final CustomInformation MESSAGE_BUNDLE_NAME
STATIC_STRATEGY_MAPPING_SOURCE
public static final CustomInformation STATIC_STRATEGY_MAPPING_SOURCE
values
public static final CustomInformation[] 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(CustomInformation c : CustomInformation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static CustomInformation 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.