Class AnnotationValue.ForEnumerationDescription.Loaded<V extends java.lang.Enum<V>>
- java.lang.Object
-
- net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase<V>
-
- net.bytebuddy.description.annotation.AnnotationValue.ForEnumerationDescription.Loaded<V>
-
- Type Parameters:
V
- The type of the represented enumeration.
- All Implemented Interfaces:
AnnotationValue.Loaded<V>
- Enclosing class:
- AnnotationValue.ForEnumerationDescription<U extends java.lang.Enum<U>>
public static class AnnotationValue.ForEnumerationDescription.Loaded<V extends java.lang.Enum<V>> extends AnnotationValue.Loaded.AbstractBase<V>
A loaded representation of an enumeration value.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AnnotationValue.ForEnumerationDescription.Loaded.WithIncompatibleRuntimeType
Represents an annotation's enumeration value for a runtime type that is not an enumeration type.-
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 V
enumeration
The represented enumeration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
AnnotationValue.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.V
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
-
-
-
-
Constructor Detail
-
Loaded
public Loaded(V enumeration)
Creates a loaded version of an enumeration description.- Parameters:
enumeration
- The represented enumeration.
-
-
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:
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
-
-