Record Class DataSourceController.RelationshipDetail
java.lang.Object
java.lang.Record
io.micronaut.controlpanel.panels.datasource.DataSourceController.RelationshipDetail
- Record Components:
name- Foreign-key namefkColumn- Foreign-key column on the selected tablepkSchema- Referenced table schemapkTable- Referenced table namepkColumn- Referenced table columnpkQualifiedName- Referenced table display name
- Enclosing class:
DataSourceController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fkColumn()Returns the value of thefkColumnrecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.pkColumn()Returns the value of thepkColumnrecord component.Returns the value of thepkQualifiedNamerecord component.pkSchema()Returns the value of thepkSchemarecord component.pkTable()Returns the value of thepkTablerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RelationshipDetail
public RelationshipDetail(String name, String fkColumn, String pkSchema, String pkTable, String pkColumn, String pkQualifiedName) Creates an instance of aRelationshipDetailrecord class.- Parameters:
name- the value for thenamerecord componentfkColumn- the value for thefkColumnrecord componentpkSchema- the value for thepkSchemarecord componentpkTable- the value for thepkTablerecord componentpkColumn- the value for thepkColumnrecord componentpkQualifiedName- the value for thepkQualifiedNamerecord component
-
-
Method Details
-
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). -
name
-
fkColumn
-
pkSchema
-
pkTable
-
pkColumn
-
pkQualifiedName
Returns the value of thepkQualifiedNamerecord component.- Returns:
- the value of the
pkQualifiedNamerecord component
-