Package org.postgresql.util
Class StreamWrapper
- java.lang.Object
-
- org.postgresql.util.StreamWrapper
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public final class StreamWrapper extends java.lang.Object implements java.io.Closeable
Wrapper around a length-limited InputStream.- Author:
- Oliver Jowett (oliver@opencloud.com)
-
-
Constructor Summary
Constructors Constructor Description StreamWrapper(byte[] data, int offset, int length)
StreamWrapper(java.io.InputStream stream)
StreamWrapper(java.io.InputStream stream, int length)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
byte[]
getBytes()
int
getLength()
int
getOffset()
java.io.InputStream
getStream()
java.lang.String
toString()
-
-
-
Constructor Detail
-
StreamWrapper
public StreamWrapper(byte[] data, int offset, int length)
-
StreamWrapper
public StreamWrapper(java.io.InputStream stream, int length)
-
StreamWrapper
public StreamWrapper(java.io.InputStream stream) throws PSQLException
- Throws:
PSQLException
-
-
Method Detail
-
getStream
public java.io.InputStream getStream() throws java.io.IOException
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Throws:
java.io.IOException
-
getLength
public int getLength()
-
getOffset
public int getOffset()
-
getBytes
public byte[] getBytes()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-