Package org.postgresql.util
Class StreamWrapper
- java.lang.Object
-
- org.postgresql.util.StreamWrapper
-
public class StreamWrapper extends Object
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(InputStream stream)
StreamWrapper(InputStream stream, int length)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getBytes()
int
getLength()
int
getOffset()
InputStream
getStream()
String
toString()
-
-
-
Constructor Detail
-
StreamWrapper
public StreamWrapper(byte[] data, int offset, int length)
-
StreamWrapper
public StreamWrapper(InputStream stream, int length)
-
StreamWrapper
public StreamWrapper(InputStream stream) throws PSQLException
- Throws:
PSQLException
-
-
Method Detail
-
getStream
public InputStream getStream()
-
getLength
public int getLength()
-
getOffset
public int getOffset()
-
getBytes
public byte[] getBytes()
-
-