Module litebridge.orm
Package org.litebridge.orm.persistence
Record Class DtoConstructor.DtoDependency
java.lang.Object
java.lang.Record
org.litebridge.orm.persistence.DtoConstructor.DtoDependency
- Record Components:
field- TheFieldAccessorinstance representing the field in the parent DTO that references the target DTO class.targetDtoClass- TheClassobject representing the target DTO type.targetPrimaryKey- AListofFieldAccessorValueobjects corresponding to the primary key fields of the target DTO class. Each entry specifies a field accessor and its corresponding value.
- Enclosing class:
DtoConstructor
public static record DtoConstructor.DtoDependency(FieldAccessor field, Class<?> targetDtoClass, List<DtoConstructor.FieldAccessorValue> targetPrimaryKey)
extends Record
Dependency configuration for a Data Transfer Object (DTO).
This class encapsulates the relationships and dependencies between a field in a parent DTO and the DTO class to which it is related. It also includes the information needed to resolve the primary key values of the target DTO class.
-
Constructor Summary
ConstructorsConstructorDescriptionDtoDependency(FieldAccessor field, Class<?> targetDtoClass, List<DtoConstructor.FieldAccessorValue> targetPrimaryKey) Creates an instance of aDtoDependencyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.field()Returns the value of thefieldrecord component.final inthashCode()Returns a hash code value for this object.Class<?> Returns the value of thetargetDtoClassrecord component.Returns the value of thetargetPrimaryKeyrecord component.Returns the primary key values of the target DTO.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DtoDependency
public DtoDependency(FieldAccessor field, Class<?> targetDtoClass, List<DtoConstructor.FieldAccessorValue> targetPrimaryKey) Creates an instance of aDtoDependencyrecord class.- Parameters:
field- the value for thefieldrecord componenttargetDtoClass- the value for thetargetDtoClassrecord componenttargetPrimaryKey- the value for thetargetPrimaryKeyrecord component
-
-
Method Details
-
targetPrimaryKeyValue
Returns the primary key values of the target DTO.- Returns:
- the target primary key values
-
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). -
field
Returns the value of thefieldrecord component.- Returns:
- the value of the
fieldrecord component
-
targetDtoClass
Returns the value of thetargetDtoClassrecord component.- Returns:
- the value of the
targetDtoClassrecord component
-
targetPrimaryKey
Returns the value of thetargetPrimaryKeyrecord component.- Returns:
- the value of the
targetPrimaryKeyrecord component
-