Uses of Class
org.geotools.jdbc.PrimaryKeyColumn
-
Packages that use PrimaryKeyColumn Package Description org.geotools.geopkg org.geotools.jdbc -
-
Uses of PrimaryKeyColumn in org.geotools.geopkg
Methods in org.geotools.geopkg with parameters of type PrimaryKeyColumn Modifier and Type Method Description String
GeoPkgDialect. getPkColumnValue(ResultSet rs, PrimaryKeyColumn pkey, int columnIdx)
-
Uses of PrimaryKeyColumn in org.geotools.jdbc
Subclasses of PrimaryKeyColumn in org.geotools.jdbc Modifier and Type Class Description class
AutoGeneratedPrimaryKeyColumn
Represents a column of a primary key whose values are auto generated by the database.class
NonIncrementingPrimaryKeyColumn
Represents a column of a primary key which is not auto incrementing.class
SequencedPrimaryKeyColumn
Represents a column of a primary key which has an associated sequence used to generate its values.Methods in org.geotools.jdbc that return PrimaryKeyColumn Modifier and Type Method Description PrimaryKeyColumn
PrimaryKey. getColumn(String name)
Methods in org.geotools.jdbc that return types with arguments of type PrimaryKeyColumn Modifier and Type Method Description List<PrimaryKeyColumn>
PrimaryKey. getColumns()
Methods in org.geotools.jdbc with parameters of type PrimaryKeyColumn Modifier and Type Method Description String
SQLDialect. getPkColumnValue(ResultSet rs, PrimaryKeyColumn pkey, int columnIdx)
Reads a primary key column value.Constructor parameters in org.geotools.jdbc with type arguments of type PrimaryKeyColumn Constructor Description PrimaryKey(String tableName, List<PrimaryKeyColumn> columns)
-