Record Class JavaRecordComponent
java.lang.Object
java.lang.Record
dev.archunitjava.model.JavaRecordComponent
- All Implemented Interfaces:
Comparable<JavaRecordComponent>
public record JavaRecordComponent(JavaTypeName owner, String name, String descriptor, GenericFieldView typeView, List<JavaAnnotationOccurrence> annotations, DeclarationLocation location)
extends Record
implements Comparable<JavaRecordComponent>
Immutable record component, distinct from its generated field and accessor.
-
Constructor Summary
ConstructorsConstructorDescriptionJavaRecordComponent(JavaTypeName owner, String name, String descriptor, GenericFieldView typeView, List<JavaAnnotationOccurrence> annotations, DeclarationLocation location) Creates an instance of aJavaRecordComponentrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theannotationsrecord component.intcompareTo(JavaRecordComponent 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.location()Returns the value of thelocationrecord component.name()Returns the value of thenamerecord component.owner()Returns the value of theownerrecord component.final StringtoString()Returns a string representation of this record class.type()typeView()Returns the value of thetypeViewrecord component.
-
Constructor Details
-
JavaRecordComponent
public JavaRecordComponent(JavaTypeName owner, String name, String descriptor, GenericFieldView typeView, List<JavaAnnotationOccurrence> annotations, DeclarationLocation location) Creates an instance of aJavaRecordComponentrecord class.- Parameters:
owner- the value for theownerrecord componentname- the value for thenamerecord componentdescriptor- the value for thedescriptorrecord componenttypeView- the value for thetypeViewrecord componentannotations- the value for theannotationsrecord componentlocation- the value for thelocationrecord component
-
-
Method Details
-
type
-
compareTo
- Specified by:
compareToin interfaceComparable<JavaRecordComponent>
-
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
-
typeView
Returns the value of thetypeViewrecord component.- Returns:
- the value of the
typeViewrecord component
-
annotations
Returns the value of theannotationsrecord component.- Returns:
- the value of the
annotationsrecord component
-
location
Returns the value of thelocationrecord component.- Returns:
- the value of the
locationrecord component
-