javax.enterprise.util
Class AnnotationLiteral<T extends Annotation>
java.lang.Object
javax.enterprise.util.AnnotationLiteral<T>
- Type Parameters:
T
- the annotation type
- All Implemented Interfaces:
- Serializable, Annotation
public abstract class AnnotationLiteral<T extends Annotation>
- extends Object
- implements Annotation, Serializable
Supports inline instantiation of annotation type instances.
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
- See Also:
Instance.select(Annotation...)
,
Event.select(Annotation...)
,
Serialized Form
AnnotationLiteral
protected AnnotationLiteral()
annotationType
public Class<? extends Annotation> annotationType()
- Specified by:
annotationType
in interface Annotation
toString
public String toString()
- Specified by:
toString
in interface Annotation
- Overrides:
toString
in class Object
equals
public boolean equals(Object other)
- Specified by:
equals
in interface Annotation
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Specified by:
hashCode
in interface Annotation
- Overrides:
hashCode
in class Object
Copyright © 2008-2012 JBoss by Red Hat, Inc.. All Rights Reserved.