| java.lang.Object org.geotools.data.jdbc.fidmapper.AbstractFIDMapper org.geotools.data.jdbc.fidmapper.MultiColumnFIDMapper
All known Subclasses: org.geotools.data.postgis.fidmapper.VersionedMulticolumnFIDMapper, org.geotools.data.postgis.fidmapper.VersionedAutoincrementFIDMapper,
MultiColumnFIDMapper | public class MultiColumnFIDMapper extends AbstractFIDMapper (Code) | | A simple implementation of FIDMapper for multi column primary keys
author: wolf |
Constructor Summary | |
public | MultiColumnFIDMapper(String tableSchemaName, String tableName, String[] colNames, int[] colTypes, int[] colSizes, int[] colDecimalDigits, boolean[] autoIncrement) | public | MultiColumnFIDMapper(String[] colNames, int[] colTypes, int[] colSizes, int[] colDecimalDigits, boolean[] autoIncrement) |
MultiColumnFIDMapper | public MultiColumnFIDMapper(String tableSchemaName, String tableName, String[] colNames, int[] colTypes, int[] colSizes, int[] colDecimalDigits, boolean[] autoIncrement)(Code) | | Builds a new instance of the MultiColumnFIDMapper
Parameters: tableSchemaName - Parameters: tableName - Parameters: colNames - - column names Parameters: colTypes - - column types, see java.sql.Types Parameters: colSizes - - column sizes Parameters: colDecimalDigits - - column decimals Parameters: autoIncrement - - flags for auto-increment tests throws: IllegalArgumentException - |
MultiColumnFIDMapper | public MultiColumnFIDMapper(String[] colNames, int[] colTypes, int[] colSizes, int[] colDecimalDigits, boolean[] autoIncrement)(Code) | | Builds a new instance of the MultiColumnFIDMapper
Parameters: colNames - - column names Parameters: colTypes - - column types, see java.sql.Types Parameters: colSizes - - column sizes Parameters: colDecimalDigits - - column decimals Parameters: autoIncrement - - flags for auto-increment tests throws: IllegalArgumentException - |
|
|