Record Class MessagingAnnotationPostProcessor.MessagingMetaAnnotation
java.lang.Object
java.lang.Record
org.springframework.integration.config.MessagingAnnotationPostProcessor.MessagingMetaAnnotation
- Enclosing class:
- MessagingAnnotationPostProcessor
protected static record MessagingAnnotationPostProcessor.MessagingMetaAnnotation(Annotation annotation, Class<? extends Annotation> annotationType)
extends Record
-
Constructor Summary
ModifierConstructorDescriptionprotected
MessagingMetaAnnotation
(Annotation annotation, Class<? extends Annotation> annotationType) Creates an instance of aMessagingMetaAnnotation
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotation
record component.Class<? extends Annotation>
Returns the value of theannotationType
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
MessagingMetaAnnotation
protected MessagingMetaAnnotation(Annotation annotation, Class<? extends Annotation> annotationType) Creates an instance of aMessagingMetaAnnotation
record class.- Parameters:
annotation
- the value for theannotation
record componentannotationType
- the value for theannotationType
record component
-
-
Method Details
-
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)
. -
annotation
Returns the value of theannotation
record component.- Returns:
- the value of the
annotation
record component
-
annotationType
Returns the value of theannotationType
record component.- Returns:
- the value of the
annotationType
record component
-