Module litebridge.orm
Package org.litebridgedb.orm.persistence
Record Class DtoConstructor.DtoDependency
java.lang.Object
java.lang.Record
org.litebridgedb.orm.persistence.DtoConstructor.DtoDependency
- Enclosing class:
DtoConstructor
public static record DtoConstructor.DtoDependency(FieldAccessor field, Class<?> targetDtoClass, List<Object> targetPrimaryKey)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionDtoDependency(FieldAccessor field, Class<?> targetDtoClass, List<Object> 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.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DtoDependency
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
-
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
-