public interface ConsumerByteBuffer
int id()
void release()
String tag()
byte[] array()
int arrayOffset()
boolean hasArray()
ByteBuffer asByteBuffer()
CharBuffer asCharBuffer()
ShortBuffer asShortBuffer()
IntBuffer asIntBuffer()
LongBuffer asLongBuffer()
FloatBuffer asFloatBuffer()
DoubleBuffer asDoubleBuffer()
ConsumerByteBuffer compact()
int capacity()
int position()
ConsumerByteBuffer position(int newPosition)
int limit()
ConsumerByteBuffer limit(int newLimit)
ConsumerByteBuffer mark()
ConsumerByteBuffer reset()
ConsumerByteBuffer clear()
ConsumerByteBuffer flip()
ConsumerByteBuffer rewind()
int remaining()
boolean hasRemaining()
boolean isReadOnly()
boolean isDirect()
byte get()
byte get(int index)
ByteBuffer get(byte[] destination)
ByteBuffer get(byte[] destination, int offset, int length)
char getChar()
char getChar(int index)
short getShort()
short getShort(int index)
int getInt()
int getInt(int index)
long getLong()
long getLong(int index)
float getFloat()
float getFloat(int index)
double getDouble()
double getDouble(int index)
ByteOrder order()
ConsumerByteBuffer put(ByteBuffer soruce)
ConsumerByteBuffer put(byte b)
ConsumerByteBuffer put(int index, byte b)
ConsumerByteBuffer put(byte[] src, int offset, int length)
ConsumerByteBuffer put(byte[] src)
ConsumerByteBuffer putChar(char value)
ConsumerByteBuffer putChar(int index, char value)
ConsumerByteBuffer putShort(short value)
ConsumerByteBuffer putShort(int index, short value)
ConsumerByteBuffer putInt(int value)
ConsumerByteBuffer putInt(int index, int value)
ConsumerByteBuffer putLong(long value)
ConsumerByteBuffer putLong(int index, long value)
ConsumerByteBuffer putFloat(float value)
ConsumerByteBuffer putFloat(int index, float value)
ConsumerByteBuffer putDouble(double value)
ConsumerByteBuffer putDouble(int index, double value)
Copyright © 2022. All rights reserved.