Record Class JavaMemberSignature
java.lang.Object
java.lang.Record
dev.archunitjava.model.JavaMemberSignature
- All Implemented Interfaces:
Comparable<JavaMemberSignature>
public record JavaMemberSignature(JavaTypeName owner, String name, String descriptor)
extends Record
implements Comparable<JavaMemberSignature>
Stable owner/name/descriptor identity for an overloaded JVM member.
-
Constructor Summary
ConstructorsConstructorDescriptionJavaMemberSignature(JavaTypeName owner, String name, String descriptor) Creates an instance of aJavaMemberSignaturerecord class. -
Method Summary
Modifier and TypeMethodDescriptionintcompareTo(JavaMemberSignature other) Returns the value of thedescriptorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.owner()Returns the value of theownerrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
JavaMemberSignature
Creates an instance of aJavaMemberSignaturerecord class.- Parameters:
owner- the value for theownerrecord componentname- the value for thenamerecord componentdescriptor- the value for thedescriptorrecord component
-
-
Method Details
-
stableKey
-
compareTo
- Specified by:
compareToin interfaceComparable<JavaMemberSignature>
-
toString
-
hashCode
-
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). -
owner
Returns the value of theownerrecord component.- Returns:
- the value of the
ownerrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
descriptor
Returns the value of thedescriptorrecord component.- Returns:
- the value of the
descriptorrecord component
-