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:
get
added throws IndexOutOfBoundsException
- byte[] get(int offset, int length) throws IOException
+ byte[] get(int offset, int length) throws IndexOutOfBoundsException, IOException
modifiedmethod:
getByte
added throws IndexOutOfBoundsException
- byte getByte(int offset) throws IOException
+ byte getByte(int offset) throws IndexOutOfBoundsException, IOException
modifiedmethod:
getInt
added throws IndexOutOfBoundsException
- int getInt(int offset) throws IOException
+ int getInt(int offset) throws IndexOutOfBoundsException, IOException
modifiedmethod:
getLong
added throws IndexOutOfBoundsException
- long getLong(int offset) throws IOException
+ long getLong(int offset) throws IndexOutOfBoundsException, IOException
modifiedmethod:
getShort
added throws IndexOutOfBoundsException
- short getShort(int offset) throws IOException
+ short getShort(int offset) throws IndexOutOfBoundsException, IOException
modifiedmethod:
put
added throws IndexOutOfBoundsException
- int put(int offset, byte[] bytes) throws IOException
+ int put(int offset, byte[] bytes) throws IndexOutOfBoundsException, IOException
modifiedmethod:
put
added throws IndexOutOfBoundsException
- int put(int offset, byte[] data, int dataOffset, int length) throws IOException
+ int put(int offset, byte[] data, int dataOffset, int length) throws IndexOutOfBoundsException, IOException
modifiedmethod:
putByte
added throws IndexOutOfBoundsException
- int putByte(int offset, byte b) throws IOException
+ int putByte(int offset, byte b) throws IndexOutOfBoundsException, IOException
modifiedmethod:
putInt
added throws IndexOutOfBoundsException
- int putInt(int offset, int v) throws IOException
+ int putInt(int offset, int v) throws IndexOutOfBoundsException, IOException
modifiedmethod:
putLong
added throws IndexOutOfBoundsException
- int putLong(int offset, long v) throws IOException
+ int putLong(int offset, long v) throws IndexOutOfBoundsException, IOException
modifiedmethod:
putShort
added throws IndexOutOfBoundsException
- int putShort(int offset, short v) throws IOException
+ int putShort(int offset, short v) throws IndexOutOfBoundsException, IOException
modifiedmethod:
split
added throws IndexOutOfBoundsException
- db.ChainedBuffer split(int offset) throws IOException
+ db.ChainedBuffer split(int offset) throws IndexOutOfBoundsException, IOException