|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.inject.internal.Annotations
public class Annotations
Annotation utilities.
Constructor Summary | |
---|---|
Annotations()
|
Method Summary | ||
---|---|---|
static Annotation |
canonicalizeIfNamed(Annotation annotation)
If the annotation is an instance of javax.inject.Named , canonicalizes to
com.google.guice.name.Named. |
|
static Class<? extends Annotation> |
canonicalizeIfNamed(Class<? extends Annotation> annotationType)
If the annotation is the class javax.inject.Named , canonicalizes to
com.google.guice.name.Named. |
|
static void |
checkForMisplacedScopeAnnotations(Class<?> type,
Object source,
Errors errors)
Adds an error if there is a misplaced annotations on type . |
|
static Annotation |
findBindingAnnotation(Errors errors,
Member member,
Annotation[] annotations)
Returns the binding annotation on member , or null if there isn't one. |
|
static Class<? extends Annotation> |
findScopeAnnotation(Errors errors,
Annotation[] annotations)
Returns the scoping annotation, or null if there isn't one. |
|
static Class<? extends Annotation> |
findScopeAnnotation(Errors errors,
Class<?> implementation)
Returns the scope annotation on type , or null if none is specified. |
|
static
|
generateAnnotation(Class<T> annotationType)
Generates an Annotation for the annotation class. |
|
static Key<?> |
getKey(TypeLiteral<?> type,
Member member,
Annotation[] annotations,
Errors errors)
Gets a key for the given type, member and annotations. |
|
static boolean |
isAllDefaultMethods(Class<? extends Annotation> annotationType)
|
|
static boolean |
isBindingAnnotation(Class<? extends Annotation> annotationType)
Returns true if annotations of the specified type are binding annotations. |
|
static boolean |
isMarker(Class<? extends Annotation> annotationType)
Returns true if the given annotation type has no attributes. |
|
static boolean |
isRetainedAtRuntime(Class<? extends Annotation> annotationType)
Returns true if the given annotation is retained at runtime. |
|
static boolean |
isScopeAnnotation(Class<? extends Annotation> annotationType)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Annotations()
Method Detail |
---|
public static boolean isMarker(Class<? extends Annotation> annotationType)
true
if the given annotation type has no attributes.
public static boolean isAllDefaultMethods(Class<? extends Annotation> annotationType)
public static <T extends Annotation> T generateAnnotation(Class<T> annotationType)
public static boolean isRetainedAtRuntime(Class<? extends Annotation> annotationType)
public static Class<? extends Annotation> findScopeAnnotation(Errors errors, Class<?> implementation)
type
, or null if none is specified.
public static Class<? extends Annotation> findScopeAnnotation(Errors errors, Annotation[] annotations)
public static boolean isScopeAnnotation(Class<? extends Annotation> annotationType)
public static void checkForMisplacedScopeAnnotations(Class<?> type, Object source, Errors errors)
type
. Scoping
annotations are not allowed on abstract classes or interfaces.
public static Key<?> getKey(TypeLiteral<?> type, Member member, Annotation[] annotations, Errors errors) throws ErrorsException
ErrorsException
public static Annotation findBindingAnnotation(Errors errors, Member member, Annotation[] annotations)
member
, or null if there isn't one.
public static boolean isBindingAnnotation(Class<? extends Annotation> annotationType)
public static Annotation canonicalizeIfNamed(Annotation annotation)
javax.inject.Named
, canonicalizes to
com.google.guice.name.Named. Returns the given annotation otherwise.
public static Class<? extends Annotation> canonicalizeIfNamed(Class<? extends Annotation> annotationType)
javax.inject.Named
, canonicalizes to
com.google.guice.name.Named. Returns the given annotation class otherwise.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |