Package io.micronaut.inject.beans
Record Class AbstractEnumBeanIntrospectionAndReference.EnumConstantDynamicRef<E extends Enum<E>>
java.lang.Object
java.lang.Record
io.micronaut.inject.beans.AbstractEnumBeanIntrospectionAndReference.EnumConstantDynamicRef<E>
- All Implemented Interfaces:
AnnotationMetadata
,AnnotationMetadataDelegate
,AnnotationMetadataProvider
,AnnotationSource
,EnumBeanIntrospection.EnumConstant<E>
- Enclosing class:
- AbstractEnumBeanIntrospectionAndReference<E extends Enum<E>>
@Internal
public static record AbstractEnumBeanIntrospectionAndReference.EnumConstantDynamicRef<E extends Enum<E>>(@NonNull AnnotationClassValue<E extends Enum<E>> enumClass, @NonNull String name, @NonNull AnnotationMetadata annotationMetadata)
extends Record
implements EnumBeanIntrospection.EnumConstant<E>
Enum value compile-time data container.
-
Field Summary
Fields inherited from interface io.micronaut.core.annotation.AnnotationMetadata
CLASS_NAME_SUFFIX, EMPTY_METADATA, VALUE_MEMBER
Fields inherited from interface io.micronaut.core.annotation.AnnotationSource
EMPTY
-
Constructor Summary
ConstructorDescriptionEnumConstantDynamicRef
(@NonNull AnnotationClassValue<E> enumClass, @NonNull String name, @NonNull AnnotationMetadata annotationMetadata) Creates an instance of aEnumConstantDynamicRef
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationMetadata
record component.Returns the value of theenumClass
record component.final boolean
Indicates whether some other object is "equal to" this one.Supplies the metadata.getValue()
final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.micronaut.core.annotation.AnnotationMetadata
enumValuesSet, enumValuesSet, getValues, hasDeclaredStereotype, hasEvaluatedExpressions, hasStereotypeNonRepeating, isAnnotationPresent, isDeclaredAnnotationPresent
Methods inherited from interface io.micronaut.core.annotation.AnnotationMetadataDelegate
booleanValue, booleanValue, booleanValue, booleanValue, classValue, classValue, classValue, classValue, classValues, classValues, classValues, classValues, copyAnnotationMetadata, doubleValue, doubleValue, doubleValue, enumValue, enumValue, enumValue, enumValue, enumValues, enumValues, enumValues, enumValues, findAnnotation, findAnnotation, findDeclaredAnnotation, findDeclaredAnnotation, findRepeatableAnnotation, findRepeatableAnnotation, getAnnotation, getAnnotation, getAnnotationNameByStereotype, getAnnotationNameByStereotype, getAnnotationNames, getAnnotationNamesByStereotype, getAnnotationNamesByStereotype, getAnnotationType, getAnnotationType, getAnnotationTypeByStereotype, getAnnotationTypeByStereotype, getAnnotationTypesByStereotype, getAnnotationTypesByStereotype, getAnnotationTypesByStereotype, getAnnotationValuesByName, getAnnotationValuesByStereotype, getAnnotationValuesByType, getDeclaredAnnotation, getDeclaredAnnotation, getDeclaredAnnotationNameByStereotype, getDeclaredAnnotationNames, getDeclaredAnnotationNamesByStereotype, getDeclaredAnnotationTypeByStereotype, getDeclaredAnnotationTypeByStereotype, getDeclaredAnnotationValuesByName, getDeclaredAnnotationValuesByType, getDeclaredMetadata, getDeclaredStereotypeAnnotationNames, getDefaultValue, getDefaultValue, getDefaultValue, getDefaultValue, getDefaultValues, getStereotypeAnnotationNames, getTargetAnnotationMetadata, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValues, getValues, hasAnnotation, hasAnnotation, hasDeclaredAnnotation, hasDeclaredAnnotation, hasDeclaredStereotype, hasDeclaredStereotype, hasDeclaredStereotype, hasPropertyExpressions, hasSimpleAnnotation, hasSimpleDeclaredAnnotation, hasStereotype, hasStereotype, hasStereotype, hasStereotype, intValue, intValue, intValue, isAnnotationPresent, isDeclaredAnnotationPresent, isEmpty, isFalse, isFalse, isPresent, isPresent, isRepeatableAnnotation, isRepeatableAnnotation, isTrue, isTrue, longValue, longValue, stringValue, stringValue, stringValue, stringValue, stringValues, stringValues, stringValues, stringValues, synthesize, synthesize, synthesizeAll, synthesizeAnnotationsByType, synthesizeDeclared, synthesizeDeclared, synthesizeDeclared, synthesizeDeclaredAnnotationsByType
-
Constructor Details
-
EnumConstantDynamicRef
public EnumConstantDynamicRef(@NonNull @NonNull AnnotationClassValue<E> enumClass, @NonNull @NonNull String name, @NonNull @NonNull AnnotationMetadata annotationMetadata) Creates an instance of aEnumConstantDynamicRef
record class.- Parameters:
enumClass
- the value for theenumClass
record componentname
- the value for thename
record componentannotationMetadata
- the value for theannotationMetadata
record component
-
-
Method Details
-
getValue
- Specified by:
getValue
in interfaceEnumBeanIntrospection.EnumConstant<E extends Enum<E>>
- Returns:
- The instance value.
-
getAnnotationMetadata
Description copied from interface:AnnotationMetadataProvider
Supplies the metadata. Defaults toAnnotationMetadata.EMPTY_METADATA
.- Specified by:
getAnnotationMetadata
in interfaceAnnotationMetadataProvider
- Returns:
- The
AnnotationMetadata
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
enumClass
Returns the value of theenumClass
record component.- Returns:
- the value of the
enumClass
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
annotationMetadata
Returns the value of theannotationMetadata
record component.- Returns:
- the value of the
annotationMetadata
record component
-