Interface AttributeWriter

All Known Implementing Classes:
JoiningAttributeWriter

public interface AttributeWriter
- Added hasNext to support the FeatureWriter API. - Changed order of writer parameters to match Collections, JDBC API. - Added IOExceptions on all methods. - Do we want AttributeWriters to know about the schema and perform validation??
Author:
Ian Schneider, Sean Geoghegan, Defence Science and Technology Organisation.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    int
    The number of attributes this reader can read, i.e the length of a row.
    Retrieve the AttributeType at the given index.
    boolean
    Query whether there are other rows in the attribute writer.
    void
    Advance the AttributeWriter, all calls to write will correspond to the same set of attributes until next is called again.
    void
    write(int position, Object attribute)
    Write the given attribute value at the position indicated.