Class AnnotationValue.ForAnnotationDescription.Loaded<V extends java.lang.annotation.Annotation>
- java.lang.Object
-
- net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase<V>
-
- net.bytebuddy.description.annotation.AnnotationValue.ForAnnotationDescription.Loaded<V>
-
- Type Parameters:
V- The annotation type.
- All Implemented Interfaces:
AnnotationValue.Loaded<V>
- Enclosing class:
- AnnotationValue.ForAnnotationDescription<U extends java.lang.annotation.Annotation>
public static class AnnotationValue.ForAnnotationDescription.Loaded<V extends java.lang.annotation.Annotation> extends AnnotationValue.Loaded.AbstractBase<V>
A loaded version of the described annotation.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase
AnnotationValue.Loaded.AbstractBase.ForUnresolvedProperty<Z>
-
Nested classes/interfaces inherited from interface net.bytebuddy.description.annotation.AnnotationValue.Loaded
AnnotationValue.Loaded.AbstractBase<W>
-
-
Field Summary
Fields Modifier and Type Field Description private VannotationThe loaded version of the represented annotation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)AnnotationValue.StategetState()Returns the state of the represented loaded annotation value.inthashCode()booleanrepresents(java.lang.Object value)Verifies if this loaded value represents the supplied loaded value.Vresolve()Resolves the value to the actual value of an annotation.java.lang.StringtoString()-
Methods inherited from class net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase
resolve
-
-
-
-
Field Detail
-
annotation
private final V extends java.lang.annotation.Annotation annotation
The loaded version of the represented annotation.
-
-
Constructor Detail
-
Loaded
public Loaded(V annotation)
Creates a representation of a loaded annotation.- Parameters:
annotation- The represented annotation.
-
-
Method Detail
-
getState
public AnnotationValue.State getState()
Returns the state of the represented loaded annotation value.- Returns:
- The state represented by this instance.
-
resolve
public V resolve()
Resolves the value to the actual value of an annotation. Calling this method might throw a runtime exception if this value is either not defined or not resolved.- Returns:
- The actual annotation value represented by this instance.
-
represents
public boolean represents(java.lang.Object value)
Verifies if this loaded value represents the supplied loaded value.- Parameters:
value- A loaded annotation value.- Returns:
trueif the supplied annotation value is represented by this annotation value.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(@MaybeNull java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-