Package org.citygml4j.xml.io.reader
Interface CityGMLReader
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
JAXBChunkReader
,JAXBSimpleReader
public interface CityGMLReader extends java.lang.AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
java.lang.String
getBaseURI()
ParentInfo
getParentInfo()
boolean
hasNext()
boolean
isSetParentInfo()
XMLChunk
nextChunk()
CityGML
nextFeature()
-
-
-
Method Detail
-
hasNext
boolean hasNext() throws CityGMLReadException
- Throws:
CityGMLReadException
-
nextFeature
CityGML nextFeature() throws CityGMLReadException
- Throws:
CityGMLReadException
-
nextChunk
XMLChunk nextChunk() throws CityGMLReadException
- Throws:
CityGMLReadException
-
isSetParentInfo
boolean isSetParentInfo()
-
getParentInfo
ParentInfo getParentInfo()
-
getBaseURI
java.lang.String getBaseURI()
-
close
void close() throws CityGMLReadException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
CityGMLReadException
-
-