public interface AttributeWriter
| Modifier and Type | Method and Description | 
|---|---|
| void | close() | 
| int | getAttributeCount()The number of attributes this reader can read, i.e the length of a row. | 
| AttributeDescriptor | getAttributeType(int i)Retrieve the AttributeType at the given index. | 
| boolean | hasNext()Query whether there are other rows in the attribute writer. | 
| void | next()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. | 
int getAttributeCount()
AttributeDescriptor getAttributeType(int i) throws ArrayIndexOutOfBoundsException
ArrayIndexOutOfBoundsExceptionvoid next() throws IOException
IOExceptionvoid write(int position,
           Object attribute)
    throws IOException
IOExceptionvoid close()
    throws IOException
IOExceptionboolean hasNext()
         throws IOException
IOExceptionFeatureWriter.hasNext()Copyright © 1996–2019 Geotools. All rights reserved.