Class StartEndStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- org.apache.sedona.sql.datasources.osmpbf.TruncatedStream
-
- org.apache.sedona.sql.datasources.osmpbf.StartEndStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public class StartEndStream extends TruncatedStream
-
-
Field Summary
-
Fields inherited from class java.io.FilterInputStream
in
-
-
Constructor Summary
Constructors Constructor Description StartEndStream(InputStream in, long lengthLimit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
continueReading()
int
read()
int
read(byte[] b, int off, int len)
long
skip(long n)
-
Methods inherited from class java.io.FilterInputStream
available, close, mark, markSupported, read, reset
-
Methods inherited from class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, transferTo
-
-
-
-
Constructor Detail
-
StartEndStream
public StartEndStream(InputStream in, long lengthLimit)
-
-
Method Detail
-
continueReading
public boolean continueReading()
- Overrides:
continueReading
in classTruncatedStream
-
read
public int read() throws IOException
- Overrides:
read
in classFilterInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classFilterInputStream
- Throws:
IOException
-
skip
public long skip(long n) throws IOException
- Overrides:
skip
in classFilterInputStream
- Throws:
IOException
-
-