Package com.ning.compress.lzf.util
Class LZFFileInputStream.Wrapper
- java.lang.Object
-
- java.io.InputStream
-
- com.ning.compress.lzf.util.LZFFileInputStream.Wrapper
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
- Enclosing class:
- LZFFileInputStream
private final class LZFFileInputStream.Wrapper extends java.io.InputStream
This simple wrapper is needed to re-route read calls so that they will use "raw" reads
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Wrapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
int
read()
int
read(byte[] buffer)
int
read(byte[] buffer, int offset, int length)
long
skip(long n)
-
-
-
Method Detail
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] buffer, int offset, int length) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] buffer) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
skip
public long skip(long n) throws java.io.IOException
- Overrides:
skip
in classjava.io.InputStream
- Throws:
java.io.IOException
-
-