org.glassfish.hk2.api
Class AnnotationLiteral<T extends Annotation>

java.lang.Object
  extended by org.glassfish.hk2.api.AnnotationLiteral<T>
Type Parameters:
T - the annotation type
All Implemented Interfaces:
Serializable, Annotation
Direct Known Subclasses:
NamedImpl

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 {}
 

Author:
jwells
See Also:
Serialized Form

Constructor Summary
protected AnnotationLiteral()
           
 
Method Summary
 Class<? extends Annotation> annotationType()
           
 boolean equals(Object other)
           
 int hashCode()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.lang.annotation.Annotation
toString
 

Constructor Detail

AnnotationLiteral

protected AnnotationLiteral()
Method Detail

annotationType

public Class<? extends Annotation> annotationType()
Specified by:
annotationType in interface Annotation

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 © 2013 Oracle Corporation. All Rights Reserved.