Package org.geotools.jdbc
Class ColumnMetadata
- Object
-
- ColumnMetadata
-
public class ColumnMetadata extends Object
Metadata about a table column used to carry information through the type mapping process.
-
-
Constructor Summary
Constructors Constructor Description ColumnMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class
getBinding()
String
getName()
String
getRemarks()
Filter
getRestriction()
int
getSqlType()
Integer
getSrid()
String
getTypeName()
boolean
isNullable()
void
setBinding(Class binding)
void
setName(String name)
void
setNullable(boolean nullable)
void
setRemarks(String remarks)
void
setRestriction(Filter restriction)
void
setSqlType(int sqlType)
void
setSrid(Integer srid)
void
setTypeName(String typeName)
-
-
-
Method Detail
-
getBinding
public Class getBinding()
-
setBinding
public void setBinding(Class binding)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getTypeName
public String getTypeName()
-
setTypeName
public void setTypeName(String typeName)
-
getSqlType
public int getSqlType()
-
setSqlType
public void setSqlType(int sqlType)
-
isNullable
public boolean isNullable()
-
setNullable
public void setNullable(boolean nullable)
-
getSrid
public Integer getSrid()
-
setSrid
public void setSrid(Integer srid)
-
getRestriction
public Filter getRestriction()
-
setRestriction
public void setRestriction(Filter restriction)
-
getRemarks
public String getRemarks()
-
setRemarks
public void setRemarks(String remarks)
-
-