Package jakarta.enterprise.util
Class AnnotationLiteral<T extends Annotation>
- java.lang.Object
-
- jakarta.enterprise.util.AnnotationLiteral<T>
-
- Type Parameters:
T
- the annotation type
- All Implemented Interfaces:
Serializable
,Annotation
- Direct Known Subclasses:
Alternative.Literal
,Any.Literal
,ApplicationMap.Literal
,ApplicationScoped.Literal
,AutoApplySession.Literal
,BeforeDestroyed.Literal
,ConversationScoped.Literal
,Default.Literal
,Dependent.Literal
,Destroyed.Literal
,FacesBehavior.Literal
,FacesConfig.Literal
,FacesConverter.Literal
,FacesDataModel.Literal
,FacesValidator.Literal
,FlowBuilderParameter.Literal
,FlowDefinition.Literal
,FlowMap.Literal
,HeaderMap.Literal
,HeaderValuesMap.Literal
,Initialized.Literal
,InitParameterMap.Literal
,InjectLiteral
,LoginToContinue.Literal
,ManagedProperty.Literal
,NamedLiteral
,Nonbinding.Literal
,Push.Literal
,QualifierLiteral
,RememberMe.Literal
,RequestCookieMap.Literal
,RequestMap.Literal
,RequestParameterMap.Literal
,RequestParameterValuesMap.Literal
,RequestScoped.Literal
,SessionMap.Literal
,SessionScoped.Literal
,SingletonLiteral
,Specializes.Literal
,TransientReference.Literal
,Typed.Literal
,Vetoed.Literal
,View.Literal
,ViewMap.Literal
,WebsocketEvent.Closed.Literal
,WebsocketEvent.Opened.Literal
public abstract class AnnotationLiteral<T extends Annotation> extends Object implements Annotation, Serializable
Supports inline instantiation of annotation type instances.
Reflection operations are using
SecurityActions
utility class to support security manager.An instance of an annotation type may be obtained by subclassing
AnnotationLiteral
.public abstract class PayByQualifier extends AnnotationLiteral<PayBy> implements PayBy { }
PayBy payByCheque = new PayByQualifier() { public PaymentMethod value() { return CHEQUE; } };
- Author:
- Pete Muir, Gavin King, Marko Luksa, Antoine Sabot-Durand
- See Also:
Instance.select(Annotation...)
,Event.select(Annotation...)
, Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AnnotationLiteral()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends Annotation>
annotationType()
boolean
equals(Object other)
int
hashCode()
String
toString()
-
-
-
Method Detail
-
annotationType
public Class<? extends Annotation> annotationType()
- Specified by:
annotationType
in interfaceAnnotation
-
toString
public String toString()
- Specified by:
toString
in interfaceAnnotation
- Overrides:
toString
in classObject
-
equals
public boolean equals(Object other)
- Specified by:
equals
in interfaceAnnotation
- Overrides:
equals
in classObject
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfaceAnnotation
- Overrides:
hashCode
in classObject
-
-