public static class AnnotationValue.ForEnumerationDescription.UnknownRuntimeEnumeration extends AnnotationValue.Loaded.AbstractBase<Enum<?>>
Represents an annotation's enumeration value for a constant that does not exist for the runtime 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| Constructor and Description |
|---|
UnknownRuntimeEnumeration(Class<? extends Enum<?>> enumType,
String value)
Creates a new representation for an unknown enumeration constant of an annotation.
|
| Modifier and Type | Method and Description |
|---|---|
AnnotationValue.Loaded.State |
getState()
Returns the state of the represented loaded annotation value.
|
boolean |
represents(Object value)
Verifies if this loaded value represents the supplied loaded value.
|
Enum<?> |
resolve()
Resolves the value to the actual value of an annotation.
|
resolvepublic UnknownRuntimeEnumeration(Class<? extends Enum<?>> enumType, String value)
enumType - The loaded enumeration type.value - The value for which no enumeration constant exists at runtime.public AnnotationValue.Loaded.State getState()
AnnotationValue.Loadedpublic Enum<?> resolve()
AnnotationValue.Loadedpublic boolean represents(Object value)
AnnotationValue.Loadedvalue - A loaded annotation value.true if the supplied annotation value is represented by this annotation value.Copyright © 2014–2016. All rights reserved.