Package org.geotools.jdbc
Class PrimaryKey
- Object
-
- PrimaryKey
-
- Direct Known Subclasses:
NullPrimaryKey
public class PrimaryKey extends Object
Primary key of a table.- Author:
- Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org
-
-
Constructor Summary
Constructors Constructor Description PrimaryKey(String tableName, List<PrimaryKeyColumn> columns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrimaryKeyColumn
getColumn(String name)
List<PrimaryKeyColumn>
getColumns()
String
getTableName()
-
-
-
Constructor Detail
-
PrimaryKey
public PrimaryKey(String tableName, List<PrimaryKeyColumn> columns)
-
-
Method Detail
-
getColumns
public List<PrimaryKeyColumn> getColumns()
-
getTableName
public String getTableName()
-
getColumn
public PrimaryKeyColumn getColumn(String name)
-
-