| org.geotools.data.jdbc.attributeio.AttributeIO
All known Subclasses: org.geotools.data.jdbc.attributeio.WKBAttributeIO, org.geotools.data.jdbc.attributeio.BasicAttributeIO, org.geotools.data.geomedia.attributeio.GeoMediaAttributeIO, org.geotools.data.oracle.attributeio.SDOAttributeIO, org.geotools.data.geometryless.attributeio.BBOXAttributeIO, org.geotools.data.jdbc.attributeio.WKTAttributeIO, org.geotools.data.postgis.attributeio.EWKTAttributeIO, org.geotools.data.geometryless.attributeio.PointXYAttributeIO, org.geotools.data.postgis.attributeio.PgWKBAttributeIO,
AttributeIO | public interface AttributeIO (Code) | | Attribute reader/writer. Classes implementing this interface know
how to parse and encode Feature attributes into resultset fields
author: wolf |
read | public Object read(ResultSet rs, int position) throws IOException(Code) | | Reads a feature attribute out of a ResultSet
Parameters: rs - - the resultset to be read Parameters: position - - the position of the attribute in the resultset The parsed attribute throws: IOException - - if some exception occurs while reading the attribute |
write | public void write(ResultSet rs, int position, Object value) throws IOException(Code) | | Writes a feature attribute into a ResultSet
Parameters: rs - - the result set to be modified Parameters: position - - the position in which the attribute will inserted into the result set Parameters: value - - the attribute that will be written into the resultset throws: IOException - - if some exception occurs while writing the attribute |
write | public void write(PreparedStatement ps, int position, Object value) throws IOException(Code) | | Writes a feature attribute into a PreparedStatement
Parameters: ps - - the result set to be modified Parameters: position - - the position in which the attribute will inserted into the result set Parameters: value - - the attribute that will be written into the resultset throws: IOException - - if some exception occurs while writing the attribute |
|
|