Class ProxyingInputStream
- java.lang.Object
-
- java.io.InputStream
-
- nonapi.io.github.classgraph.utils.ProxyingInputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class ProxyingInputStream extends java.io.InputStream
A proxyingInputStream
implementation that compiles for JDK 7 but can support the methods added in JDK 8 by reflection.
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.InputStream
inputStream
private static java.lang.reflect.Method
readAllBytes
private static java.lang.reflect.Method
readNBytes1
private static java.lang.reflect.Method
readNBytes3
private static java.lang.reflect.Method
skipNBytes
private static java.lang.reflect.Method
transferTo
-
Constructor Summary
Constructors Constructor Description ProxyingInputStream(java.io.InputStream inputStream)
A proxyingInputStream
implementation that compiles for JDK 7 but can support the methods added in JDK 8 by reflection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
void
mark(int readlimit)
boolean
markSupported()
int
read()
int
read(byte[] b)
int
read(byte[] b, int off, int len)
byte[]
readAllBytes()
int
readNBytes(byte[] b, int off, int len)
byte[]
readNBytes(int len)
void
reset()
long
skip(long n)
void
skipNBytes(long n)
java.lang.String
toString()
long
transferTo(java.io.OutputStream out)
-
-
-
Field Detail
-
inputStream
private java.io.InputStream inputStream
-
readAllBytes
private static java.lang.reflect.Method readAllBytes
-
readNBytes1
private static java.lang.reflect.Method readNBytes1
-
readNBytes3
private static java.lang.reflect.Method readNBytes3
-
skipNBytes
private static java.lang.reflect.Method skipNBytes
-
transferTo
private static java.lang.reflect.Method transferTo
-
-
Method Detail
-
read
public int read() throws java.io.IOException
- Specified by:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] b) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
read
in classjava.io.InputStream
- Throws:
java.io.IOException
-
readAllBytes
public byte[] readAllBytes() throws java.io.IOException
- Overrides:
readAllBytes
in classjava.io.InputStream
- Throws:
java.io.IOException
-
readNBytes
public byte[] readNBytes(int len) throws java.io.IOException
- Overrides:
readNBytes
in classjava.io.InputStream
- Throws:
java.io.IOException
-
readNBytes
public int readNBytes(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
readNBytes
in classjava.io.InputStream
- Throws:
java.io.IOException
-
available
public int available() throws java.io.IOException
- Overrides:
available
in classjava.io.InputStream
- Throws:
java.io.IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupported
in classjava.io.InputStream
-
mark
public void mark(int readlimit)
- Overrides:
mark
in classjava.io.InputStream
-
reset
public void reset() throws java.io.IOException
- Overrides:
reset
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
-
skipNBytes
public void skipNBytes(long n) throws java.io.IOException
- Throws:
java.io.IOException
-
transferTo
public long transferTo(java.io.OutputStream out) throws java.io.IOException
- Overrides:
transferTo
in classjava.io.InputStream
- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
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
-
-