Class AnnotationValue.ForMissingValue.Loaded<W>
java.lang.Object
net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase<W>
net.bytebuddy.description.annotation.AnnotationValue.ForMissingValue.Loaded<W>
- Type Parameters:
W
- The type of the annotation's expected value.
- All Implemented Interfaces:
AnnotationValue.Loaded<W>
- Enclosing class:
AnnotationValue.ForMissingValue<U,
V>
public static class AnnotationValue.ForMissingValue.Loaded<W>
extends AnnotationValue.Loaded.AbstractBase<W>
Describes an annotation value for a property that is not assignable to it.
-
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
FieldsModifier and TypeFieldDescriptionprivate final String
The name of the property for which the annotation value is missing.private final Class
<? extends Annotation> The annotation type. -
Constructor Summary
ConstructorsConstructorDescriptionLoaded
(Class<? extends Annotation> type, String property) Creates a new loaded representation for an unresolved property. -
Method Summary
Modifier and TypeMethodDescriptiongetState()
Returns the state of the represented loaded annotation value.boolean
represents
(Object value) Verifies if this loaded value represents the supplied loaded value.resolve()
Resolves the value to the actual value of an annotation.Methods inherited from class net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase
resolve
-
Field Details
-
type
The annotation type. -
property
The name of the property for which the annotation value is missing.
-
-
Constructor Details
-
Loaded
Creates a new loaded representation for an unresolved property.- Parameters:
type
- The annotation type.property
- The name of the property for which the annotation value is missing.
-
-
Method Details
-
getState
Returns the state of the represented loaded annotation value.- Returns:
- The state represented by this instance.
-
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
Verifies if this loaded value represents the supplied loaded value.- Parameters:
value
- A loaded annotation value.- Returns:
true
if the supplied annotation value is represented by this annotation value.
-