|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.geotools.data.ReTypeFeatureReader
Supports on the fly retyping of FeatureReader contents.
This may be used to have a DataStore work with your own representation of Feature information.
Example Use:
FeatureReader reader = dataStore.getFeatureReader( query, Transaction.AUTO_COMMIT );
reader = new ReTypeFeatureReader( reader, myFeatureType );
try {
while( reader.hasNext() ){
Feature f = reader.next();
System.out.println( f );
}
}
finally {
reader.close(); // will close both
}
| Constructor Summary | |
ReTypeFeatureReader(FeatureReader reader,
FeatureType featureType)
Constructs a FetureReader that will ReType streaming content. |
|
| Method Summary | |
void |
close()
Release the underlying resources associated with this stream. |
FeatureType |
getFeatureType()
Return the FeatureType this reader has been configured to create. |
boolean |
hasNext()
Query whether this FeatureReader has another Feature. |
Feature |
next()
Reads the next Feature in the FeatureReader. |
protected AttributeType[] |
typeAttributes(FeatureType target,
FeatureType origional)
Supplies mapping from origional to target FeatureType. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public ReTypeFeatureReader(FeatureReader reader,
FeatureType featureType)
reader - Origional FeatureReaderfeatureType - Target FeatureType| Method Detail |
protected AttributeType[] typeAttributes(FeatureType target,
FeatureType origional)
Will also ensure that origional can cover target
target - Desired FeatureTypeorigional - Origional FeatureType
java.lang.IllegalArgumentException - if unable to provide a mappingpublic FeatureType getFeatureType()
FeatureReader
getFeatureType in interface FeatureReaderFeatureReader.getFeatureType()
public Feature next()
throws java.io.IOException,
IllegalAttributeException,
java.util.NoSuchElementException
FeatureReader
next in interface FeatureReaderjava.util.NoSuchElementException - If there are no more Features in the
Reader.
IllegalAttributeException - If the attributes read do not comply
with the FeatureType.
java.io.IOException - If an error occurs reading the Feature.FeatureReader.next()
public boolean hasNext()
throws java.io.IOException
FeatureReader
hasNext in interface FeatureReaderjava.io.IOException - If an error occurs determining if there are more
Features.FeatureReader.hasNext()
public void close()
throws java.io.IOException
FeatureReader
close in interface FeatureReaderjava.io.IOException - DOCUMENT ME!FeatureReader.close()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||