Package org.apache.torque.map
Klasse ForeignKeyMap.ColumnPair
java.lang.Object
org.apache.torque.map.ForeignKeyMap.ColumnPair
- Alle implementierten Schnittstellen:
Serializable
- Umschließende Klasse:
ForeignKeyMap
A pair of local and Foreign column.
This class is immutable.
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungColumnPair
(ForeignKeyMap foreignKeyMap, ColumnMap local, String foreignName) Constructor.ColumnPair
(ForeignKeyMap foreignKeyMap, ColumnMap local, ColumnMap foreign) Constructor. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns the foreign column of the pair.Returns the associated foreign key map.getLocal()
Returns the local column of the pair.
-
Konstruktordetails
-
ColumnPair
Constructor.- Parameter:
foreignKeyMap
- the foreign key map this columnPait belongs to.local
- the local column, not null.foreign
- the foreign column, not null.- Löst aus:
NullPointerException
- if local or doreign are null.
-
ColumnPair
Constructor.- Parameter:
foreignKeyMap
- the foreign key map this columnPait belongs to.local
- the local column, not null.foreignName
- the foreign column, not null.- Löst aus:
NullPointerException
- if local or doreign are null.
-
-
Methodendetails
-
getForeignKeyMap
Returns the associated foreign key map.- Gibt zurück:
- the associated foreign key map, not null.
-
getLocal
Returns the local column of the pair.- Gibt zurück:
- the local column of the pair, not null.
-
getForeign
Returns the foreign column of the pair.- Gibt zurück:
- the foreign column of the pair, not null.
- Löst aus:
IllegalStateException
- if the foreign table map builder was not yet built.
-