Uses of Class
org.apache.hadoop.hbase.nio.MultiByteBuff
Packages that use org.apache.hadoop.hbase.nio.MultiByteBuff
-
Uses of org.apache.hadoop.hbase.nio.MultiByteBuff in org.apache.hadoop.hbase.nio
Methods in org.apache.hadoop.hbase.nio that return org.apache.hadoop.hbase.nio.MultiByteBuff in inModifier and TypeMethodDescriptionorg.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.duplicate()Returns an MBB which is a duplicate version of this MBB.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.limit(int limit) Marks the limit of this MBB.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.mark()Marks the current position of the MBBorg.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.moveBack(int length) Jumps back the current position of this MBB by specified length.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.position(int position) Sets this MBB's position to the given value.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.put(byte b) Writes a byte to this MBB at the current position and increments the positionfinal org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.put(byte[] src) Copies from the given byte[] to this MBBorg.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.put(byte[] src, int offset, int length) Copies from the given byte[] to this MBB.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.put(int index, byte b) Writes a byte to this MBB at the given index and won't affect the position of any of the buffers.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.put(int destOffset, org.apache.hadoop.hbase.nio.ByteBuff src, int srcOffset, int length) Copies from a src BB to this MBB.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.putInt(int val) Writes an int to this MBB at its current position.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.putLong(long val) Writes a long to this MBB at its current position.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.reset()Similar toByteBuffer.reset(), ensures that this MBB is reset back to last marked position.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.retain()org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.rewind()Rewinds this MBB and the position is set to 0org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.skip(int length) Jumps the current position of this MBB by specified length.org.apache.hadoop.hbase.nio.MultiByteBuffMultiByteBuff.slice()Returns an MBB which is a sliced version of this MBB.