DBBuffer

Package: db
Type: class

10.3_PUBLIC

modifiedmethod: fill
added throws IndexOutOfBoundsException
- void fill(int startOffset, int endOffset, byte fillByte) throws IOException
+ void fill(int startOffset, int endOffset, byte fillByte) throws IndexOutOfBoundsException, IOException
modifiedmethod: get
added throws IndexOutOfBoundsException
- void get(int offset, byte[] data) throws IOException
+ void get(int offset, byte[] data) throws IndexOutOfBoundsException, IOException
modifiedmethod: get
added throws IndexOutOfBoundsException
- void get(int offset, byte[] data, int dataOffset, int length) throws IOException
+ void get(int offset, byte[] data, int dataOffset, int length) throws IndexOutOfBoundsException, IOException
modifiedmethod: getByte
added throws IndexOutOfBoundsException
- byte getByte(int offset) throws IOException
+ byte getByte(int offset) throws IndexOutOfBoundsException, IOException
modifiedmethod: put
added throws IndexOutOfBoundsException
- void put(int offset, byte[] bytes) throws IOException
+ void put(int offset, byte[] bytes) throws IndexOutOfBoundsException, IOException
modifiedmethod: put
added throws IndexOutOfBoundsException
- void put(int offset, byte[] bytes, int dataOffset, int length) throws IOException
+ void put(int offset, byte[] bytes, int dataOffset, int length) throws IndexOutOfBoundsException, IOException
modifiedmethod: putByte
added throws IndexOutOfBoundsException
- void putByte(int offset, byte b) throws IOException
+ void putByte(int offset, byte b) throws IndexOutOfBoundsException, IOException
modifiedmethod: split
added throws IndexOutOfBoundsException
- db.DBBuffer split(int offset) throws IOException
+ db.DBBuffer split(int offset) throws IndexOutOfBoundsException, IOException

9.0.1_PUBLIC

introducedInitial version