public static class AnnotationValue.ForEnumerationDescription.IncompatibleRuntimeType extends AnnotationValue.Loaded.AbstractBase<java.lang.Enum<?>>
Represents an annotation's enumeration value for a runtime type that is not an enumeration type.
Note: Neither of Object.hashCode()
, Object.toString()
and
Object.equals(Object)
are implemented specifically what resembles the way
such exceptional states are represented in the Open JDK's annotation implementations.
AnnotationValue.Loaded.AbstractBase<W>, AnnotationValue.Loaded.State
Modifier and Type | Field and Description |
---|---|
private java.lang.Class<?> |
type
The runtime type which is not an enumeration type.
|
Constructor and Description |
---|
IncompatibleRuntimeType(java.lang.Class<?> type)
Creates a new representation for an incompatible runtime type.
|
Modifier and Type | Method and Description |
---|---|
AnnotationValue.Loaded.State |
getState()
Returns the state of the represented loaded annotation value.
|
boolean |
represents(java.lang.Object value)
Verifies if this loaded value represents the supplied loaded value.
|
java.lang.Enum<?> |
resolve()
Resolves the value to the actual value of an annotation.
|
resolve
private final java.lang.Class<?> type
public IncompatibleRuntimeType(java.lang.Class<?> type)
type
- The runtime type which is not an enumeration type.public AnnotationValue.Loaded.State getState()
public java.lang.Enum<?> resolve()
public boolean represents(java.lang.Object value)
value
- A loaded annotation value.true
if the supplied annotation value is represented by this annotation value.