T - the annotation typepublic 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;
}
};
Instance.select(Annotation...),
Event.select(Annotation...),
Serialized Form| Modifier | Constructor and Description |
|---|---|
protected |
AnnotationLiteral() |
public Class<? extends Annotation> annotationType()
annotationType in interface Annotationpublic String toString()
toString in interface AnnotationtoString in class Objectpublic boolean equals(Object other)
equals in interface Annotationequals in class Objectpublic int hashCode()
hashCode in interface AnnotationhashCode in class ObjectCopyright © 2008-2014 JBoss by Red Hat, Inc.. All Rights Reserved.