Class AnnotationValue.ForEnumerationDescription.UnknownRuntimeEnumeration
- java.lang.Object
-
- net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase<java.lang.Enum<?>>
-
- net.bytebuddy.description.annotation.AnnotationValue.ForEnumerationDescription.UnknownRuntimeEnumeration
-
- All Implemented Interfaces:
AnnotationValue.Loaded<java.lang.Enum<?>>
- Enclosing class:
- AnnotationValue.ForEnumerationDescription<U extends java.lang.Enum<U>>
public static class AnnotationValue.ForEnumerationDescription.UnknownRuntimeEnumeration extends AnnotationValue.Loaded.AbstractBase<java.lang.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()
andObject.equals(Object)
are implemented specifically what resembles the way such exceptional states are represented in the Open JDK's annotation implementations.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.bytebuddy.description.annotation.AnnotationValue.Loaded
AnnotationValue.Loaded.AbstractBase<W>, AnnotationValue.Loaded.State
-
-
Constructor Summary
Constructors Constructor Description UnknownRuntimeEnumeration(java.lang.Class<? extends java.lang.Enum<?>> enumType, java.lang.String value)
Creates a new representation for an unknown enumeration constant of an annotation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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.-
Methods inherited from class net.bytebuddy.description.annotation.AnnotationValue.Loaded.AbstractBase
resolve
-
-
-
-
Constructor Detail
-
UnknownRuntimeEnumeration
public UnknownRuntimeEnumeration(java.lang.Class<? extends java.lang.Enum<?>> enumType, java.lang.String value)
Creates a new representation for an unknown enumeration constant of an annotation.- Parameters:
enumType
- The loaded enumeration type.value
- The value for which no enumeration constant exists at runtime.
-
-
Method Detail
-
getState
public AnnotationValue.Loaded.State getState()
Description copied from interface:AnnotationValue.Loaded
Returns the state of the represented loaded annotation value.- Returns:
- The state represented by this instance.
-
resolve
public java.lang.Enum<?> resolve()
Description copied from interface:AnnotationValue.Loaded
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)
Description copied from interface:AnnotationValue.Loaded
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.
-
-