Package me.ehp246.aufjms.core.reflection
Record Class AnnotatedArgument<T extends Annotation>
java.lang.Object
java.lang.Record
me.ehp246.aufjms.core.reflection.AnnotatedArgument<T>
public record AnnotatedArgument<T extends Annotation>(T extends Annotation annotation, Object argument, Parameter parameter)
extends Record
- Since:
- 1.0
- Author:
- Lei Yang
-
Constructor Summary
ConstructorsConstructorDescriptionAnnotatedArgument(T annotation, Object argument, Parameter parameter) Creates an instance of aAnnotatedArgumentrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationrecord component.argument()Returns the value of theargumentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theparameterrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AnnotatedArgument
Creates an instance of aAnnotatedArgumentrecord class.- Parameters:
annotation- the value for theannotationrecord componentargument- the value for theargumentrecord componentparameter- the value for theparameterrecord 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 theannotationrecord component.- Returns:
- the value of the
annotationrecord component
-
argument
Returns the value of theargumentrecord component.- Returns:
- the value of the
argumentrecord component
-
parameter
Returns the value of theparameterrecord component.- Returns:
- the value of the
parameterrecord component
-