Package net.bytebuddy.pool
Class TypePool.AbstractBase.RawDescriptionArray.Loaded
- java.lang.Object
-
- net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase<java.lang.Object[]>
-
- net.bytebuddy.pool.TypePool.AbstractBase.RawDescriptionArray.Loaded
-
- All Implemented Interfaces:
AnnotationValue.Loaded<java.lang.Object[]>
- Enclosing class:
- TypePool.AbstractBase.RawDescriptionArray
protected static class TypePool.AbstractBase.RawDescriptionArray.Loaded extends AnnotationValue.Loaded.AbstractBase<java.lang.Object[]>
Represents a loaded annotation property representing a complex array.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.bytebuddy.description.annotation.AnnotationValue.Loaded
AnnotationValue.Loaded.AbstractBase<W>, AnnotationValue.Loaded.State
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Class<?>
componentType
The array's loaded component type.private java.util.List<AnnotationValue.Loaded<?>>
values
A list of loaded values of the represented complex array.
-
Constructor Summary
Constructors Constructor Description Loaded(java.lang.Class<?> componentType, java.util.List<AnnotationValue.Loaded<?>> values)
Creates a new representation of an annotation property representing an array of non-trivial values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
AnnotationValue.Loaded.State
getState()
Returns the state of the represented loaded annotation value.int
hashCode()
boolean
represents(java.lang.Object value)
Verifies if this loaded value represents the supplied loaded value.java.lang.Object[]
resolve()
Resolves the value to the actual value of an annotation.java.lang.String
toString()
-
Methods inherited from class net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase
resolve
-
-
-
-
Field Detail
-
componentType
private final java.lang.Class<?> componentType
The array's loaded component type.
-
values
private final java.util.List<AnnotationValue.Loaded<?>> values
A list of loaded values of the represented complex array.
-
-
Constructor Detail
-
Loaded
public Loaded(java.lang.Class<?> componentType, java.util.List<AnnotationValue.Loaded<?>> values)
Creates a new representation of an annotation property representing an array of non-trivial values.- Parameters:
componentType
- The array's loaded component type.values
- A list of loaded values of the represented complex array.
-
-
Method Detail
-
getState
public AnnotationValue.Loaded.State getState()
Returns the state of the represented loaded annotation value.- Returns:
- The state represented by this instance.
-
resolve
public java.lang.Object[] 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:
true
if the supplied annotation value is represented by this annotation value.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-