Record Class MessagingAnnotationBeanPostProcessor.MessagingMetaAnnotation
java.lang.Object
java.lang.Record
org.springframework.integration.config.MessagingAnnotationBeanPostProcessor.MessagingMetaAnnotation
- Enclosing class:
- MessagingAnnotationBeanPostProcessor
public static record MessagingAnnotationBeanPostProcessor.MessagingMetaAnnotation(Annotation annotation, Class<? extends Annotation> annotationType)
extends Record
- 
Constructor SummaryConstructorsConstructorDescriptionMessagingMetaAnnotation(Annotation annotation, Class<? extends Annotation> annotationType) Creates an instance of aMessagingMetaAnnotationrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theannotationrecord component.Class<? extends Annotation>Returns the value of theannotationTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
MessagingMetaAnnotationCreates an instance of aMessagingMetaAnnotationrecord class.- Parameters:
- annotation- the value for the- annotationrecord component
- annotationType- the value for the- annotationTyperecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
annotationReturns the value of theannotationrecord component.- Returns:
- the value of the annotationrecord component
 
- 
annotationTypeReturns the value of theannotationTyperecord component.- Returns:
- the value of the annotationTyperecord component
 
 
-