Package org.postgresql.jdbc
Class AbstractBlobClob.LOIterator
- java.lang.Object
-
- org.postgresql.jdbc.AbstractBlobClob.LOIterator
-
- Enclosing class:
- AbstractBlobClob
private class AbstractBlobClob.LOIterator extends java.lang.Object
Iterates over a large object returning byte values. Will buffer the data from the large object.
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]
buffer
private static int
BUFFER_SIZE
private int
idx
private int
numBytes
-
Constructor Summary
Constructors Constructor Description LOIterator(long start)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
private byte
next()
-
-
-
Field Detail
-
BUFFER_SIZE
private static final int BUFFER_SIZE
- See Also:
- Constant Field Values
-
buffer
private byte[] buffer
-
idx
private int idx
-
numBytes
private int numBytes
-
-