Enum InterceptorCommonLibrary.AnnotationUsage
java.lang.Object
java.lang.Enum<InterceptorCommonLibrary.AnnotationUsage>
name.matthewgreet.strutscommons.util.InterceptorCommonLibrary.AnnotationUsage
- All Implemented Interfaces:
Serializable,Comparable<InterceptorCommonLibrary.AnnotationUsage>,java.lang.constant.Constable
- Enclosing class:
InterceptorCommonLibrary
public static enum InterceptorCommonLibrary.AnnotationUsage
extends Enum<InterceptorCommonLibrary.AnnotationUsage>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionClass<?> Returns interface, such asConverter, that defines policies of this annotation usage, or null if not applicable.intReturns index of generic parameters of interface for annotation type, with 0 being the first.Returns index of generic parameters of interface for recipient type, with 0 being the first, or null if not applicable.Class<?> Returns template class, such asAbstractConverterSupport, that aids policy implementation of this annotation usage, or null if not applicable.intReturns index of generic parameters of support class for annotation type, with 0 being the first.Returns index of generic parameters of support class for recipient type, with 0 being the first, or null if not applicable.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ADJUSTER
-
COLLECTION_CONVERT
-
COLLECTION_POST_ADJUSTER
-
COLLECTION_POST_VALIDATION
-
CONVERT
-
FORM_FIELD
-
MANUAL_PARAMETER_CONVERSION
-
NA
-
NON_CONVERT_VALIDATION
-
POST_ADJUSTER
-
POST_VALIDATION
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-
getDirectInterface
Returns interface, such asConverter, that defines policies of this annotation usage, or null if not applicable. -
getDirectInterfaceAnnotationIndex
public int getDirectInterfaceAnnotationIndex()Returns index of generic parameters of interface for annotation type, with 0 being the first. -
getDirectInterfaceRecipientTypeIndex
Returns index of generic parameters of interface for recipient type, with 0 being the first, or null if not applicable. -
getSupportClass
Returns template class, such asAbstractConverterSupport, that aids policy implementation of this annotation usage, or null if not applicable. -
getSupportClassAnnotationIndex
public int getSupportClassAnnotationIndex()Returns index of generic parameters of support class for annotation type, with 0 being the first. -
getSupportClassRecipientTypeIndex
Returns index of generic parameters of support class for recipient type, with 0 being the first, or null if not applicable.
-