public class DbFk extends Object implements Serializable
| Modifier and Type | Class and Description |
|---|---|
static class |
DbFk.Builder
Builder to create immutable
DbFk objects. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
List<String> |
getForeignColumns()
Deprecated.
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this name is wrong and will eventually be removed ─ use
getReferencedColumns() instead. |
String |
getForeignTable()
Deprecated.
a "foreign key" is actually composed from the local columns of the table where it is defined (the
child table); this method was used to get the name of the referenced table, which is the parent table, thus the
name of the method is wrong and it will eventually be removed ─ use
getReferencedTable() instead. |
List<String> |
getLocalColumns()
Gets the local columns names.
|
List<String> |
getReferencedColumns()
Gets the referenced columns names.
|
String |
getReferencedTable()
Gets the name of the referenced table (parent table).
|
int |
hashCode() |
public List<String> getLocalColumns()
@Deprecated public List<String> getForeignColumns()
getReferencedColumns() instead.public List<String> getReferencedColumns()
@Deprecated public String getForeignTable()
getReferencedTable() instead.public String getReferencedTable()
Copyright © 2023 Feedzai. All rights reserved.