|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.mina.core.buffer.IoBuffer
org.apache.mina.core.buffer.IoBufferWrapper
public class IoBufferWrapper
A IoBuffer
that wraps a buffer and proxies any operations to it.
You can think this class like a FilterOutputStream
. All operations
are proxied by default so that you can extend this class and override existing
operations selectively. You can introduce new operations, too.
Field Summary |
---|
Fields inherited from class org.apache.mina.core.buffer.IoBuffer |
---|
EMPTY_BUFFER |
Constructor Summary | |
---|---|
protected |
IoBufferWrapper(IoBuffer buf)
Create a new instance. |
Method Summary | ||
---|---|---|
byte[] |
array()
|
|
int |
arrayOffset()
|
|
CharBuffer |
asCharBuffer()
|
|
DoubleBuffer |
asDoubleBuffer()
|
|
FloatBuffer |
asFloatBuffer()
|
|
InputStream |
asInputStream()
Returns an InputStream that reads the data from this buffer. |
|
IntBuffer |
asIntBuffer()
|
|
LongBuffer |
asLongBuffer()
|
|
OutputStream |
asOutputStream()
Returns an OutputStream that appends the data into this buffer. |
|
IoBuffer |
asReadOnlyBuffer()
|
|
ShortBuffer |
asShortBuffer()
|
|
ByteBuffer |
buf()
Returns the underlying NIO buffer instance. |
|
int |
capacity()
|
|
IoBuffer |
capacity(int newCapacity)
Increases the capacity of this buffer. |
|
IoBuffer |
clear()
|
|
IoBuffer |
compact()
|
|
int |
compareTo(IoBuffer that)
|
|
IoBuffer |
duplicate()
|
|
boolean |
equals(Object ob)
|
|
IoBuffer |
expand(int expectedRemaining)
Changes the capacity and limit of this buffer so this buffer get the specified expectedRemaining room from the current position. |
|
IoBuffer |
expand(int pos,
int expectedRemaining)
Changes the capacity and limit of this buffer so this buffer get the specified expectedRemaining room from the specified position. |
|
IoBuffer |
fill(byte value,
int size)
Fills this buffer with the specified value. |
|
IoBuffer |
fill(int size)
Fills this buffer with NUL (0x00) . |
|
IoBuffer |
fillAndReset(byte value,
int size)
Fills this buffer with the specified value. |
|
IoBuffer |
fillAndReset(int size)
Fills this buffer with NUL (0x00) . |
|
IoBuffer |
flip()
|
|
void |
free()
Declares this buffer and all its derived buffers are not used anymore so that it can be reused by some IoBufferAllocator implementations. |
|
byte |
get()
|
|
IoBuffer |
get(byte[] dst)
|
|
IoBuffer |
get(byte[] dst,
int offset,
int length)
|
|
byte |
get(int index)
|
|
char |
getChar()
|
|
char |
getChar(int index)
|
|
double |
getDouble()
|
|
double |
getDouble(int index)
|
|
|
getEnum(Class<E> enumClass)
Reads a byte from the buffer and returns the correlating enum constant defined by the specified enum type. |
|
|
getEnum(int index,
Class<E> enumClass)
Reads a byte from the buffer and returns the correlating enum constant defined by the specified enum type. |
|
|
getEnumInt(Class<E> enumClass)
Reads an int from the buffer and returns the correlating enum constant defined by the specified enum type. |
|
|
getEnumInt(int index,
Class<E> enumClass)
Reads an int from the buffer and returns the correlating enum constant defined by the specified enum type. |
|
|
getEnumSet(Class<E> enumClass)
Reads a byte sized bit vector and converts it to an EnumSet . |
|
|
getEnumSet(int index,
Class<E> enumClass)
Reads a byte sized bit vector and converts it to an EnumSet . |
|
|
getEnumSetInt(Class<E> enumClass)
Reads an int sized bit vector and converts it to an EnumSet . |
|
|
getEnumSetInt(int index,
Class<E> enumClass)
Reads an int sized bit vector and converts it to an EnumSet . |
|
|
getEnumSetLong(Class<E> enumClass)
Reads a long sized bit vector and converts it to an EnumSet . |
|
|
getEnumSetLong(int index,
Class<E> enumClass)
Reads a long sized bit vector and converts it to an EnumSet . |
|
|
getEnumSetShort(Class<E> enumClass)
Reads a short sized bit vector and converts it to an EnumSet . |
|
|
getEnumSetShort(int index,
Class<E> enumClass)
Reads a short sized bit vector and converts it to an EnumSet . |
|
|
getEnumShort(Class<E> enumClass)
Reads a short from the buffer and returns the correlating enum constant defined by the specified enum type. |
|
|
getEnumShort(int index,
Class<E> enumClass)
Reads a short from the buffer and returns the correlating enum constant defined by the specified enum type. |
|
float |
getFloat()
|
|
float |
getFloat(int index)
|
|
String |
getHexDump()
Returns hexdump of this buffer. |
|
String |
getHexDump(int lengthLimit)
Return hexdump of this buffer with limited length. |
|
int |
getInt()
|
|
int |
getInt(int index)
|
|
long |
getLong()
|
|
long |
getLong(int index)
|
|
int |
getMediumInt()
Relative get method for reading a medium int value. |
|
int |
getMediumInt(int index)
Absolute get method for reading a medium int value. |
|
Object |
getObject()
Reads a Java object from the buffer using the context ClassLoader
of the current thread. |
|
Object |
getObject(ClassLoader classLoader)
Reads a Java object from the buffer using the specified classLoader. |
|
IoBuffer |
getParentBuffer()
Returns the parent buffer that this buffer wrapped. |
|
String |
getPrefixedString(CharsetDecoder decoder)
Reads a string which has a 16-bit length field before the actual encoded string, using the specified decoder and returns it. |
|
String |
getPrefixedString(int prefixLength,
CharsetDecoder decoder)
Reads a string which has a length field before the actual encoded string, using the specified decoder and returns it. |
|
short |
getShort()
|
|
short |
getShort(int index)
|
|
IoBuffer |
getSlice(int length)
TODO document me. |
|
IoBuffer |
getSlice(int index,
int length)
TODO document me. |
|
String |
getString(CharsetDecoder decoder)
Reads a NUL -terminated string from this buffer using the
specified decoder and returns it. |
|
String |
getString(int fieldSize,
CharsetDecoder decoder)
Reads a NUL -terminated string from this buffer using the
specified decoder and returns it. |
|
short |
getUnsigned()
Reads one unsigned byte as a short integer. |
|
short |
getUnsigned(int index)
Reads one byte as an unsigned short integer. |
|
long |
getUnsignedInt()
Reads four bytes unsigned integer. |
|
long |
getUnsignedInt(int index)
Reads four bytes unsigned integer. |
|
int |
getUnsignedMediumInt()
Relative get method for reading an unsigned medium int value. |
|
int |
getUnsignedMediumInt(int index)
Absolute get method for reading an unsigned medium int value. |
|
int |
getUnsignedShort()
Reads two bytes unsigned integer. |
|
int |
getUnsignedShort(int index)
Reads two bytes unsigned integer. |
|
boolean |
hasArray()
|
|
int |
hashCode()
|
|
boolean |
hasRemaining()
|
|
int |
indexOf(byte b)
Returns the first occurence position of the specified byte from the current position to the current limit. |
|
boolean |
isAutoExpand()
Returns true if and only if autoExpand is turned on. |
|
boolean |
isAutoShrink()
Returns true if and only if autoShrink is turned on. |
|
boolean |
isDerived()
returns true if and only if this buffer is derived from other buffer via IoBuffer.duplicate() , IoBuffer.slice() or IoBuffer.asReadOnlyBuffer() . |
|
boolean |
isDirect()
|
|
boolean |
isReadOnly()
|
|
int |
limit()
|
|
IoBuffer |
limit(int newLimit)
|
|
IoBuffer |
mark()
|
|
int |
markValue()
Returns the position of the current mark. |
|
int |
minimumCapacity()
Returns the minimum capacity of this buffer which is used to determine the new capacity of the buffer shrunk by IoBuffer.compact() and
IoBuffer.shrink() operation. |
|
IoBuffer |
minimumCapacity(int minimumCapacity)
Sets the minimum capacity of this buffer which is used to determine the new capacity of the buffer shrunk by IoBuffer.compact() and
IoBuffer.shrink() operation. |
|
ByteOrder |
order()
|
|
IoBuffer |
order(ByteOrder bo)
|
|
int |
position()
|
|
IoBuffer |
position(int newPosition)
|
|
boolean |
prefixedDataAvailable(int prefixLength)
Returns true if this buffer contains a data which has a data length as a prefix and the buffer has remaining data as enough as specified in the data length field. |
|
boolean |
prefixedDataAvailable(int prefixLength,
int maxDataLength)
Returns true if this buffer contains a data which has a data length as a prefix and the buffer has remaining data as enough as specified in the data length field. |
|
IoBuffer |
put(byte b)
|
|
IoBuffer |
put(byte[] src)
|
|
IoBuffer |
put(byte[] src,
int offset,
int length)
|
|
IoBuffer |
put(ByteBuffer src)
Writes the content of the specified src into this buffer. |
|
IoBuffer |
put(int index,
byte b)
|
|
IoBuffer |
put(IoBuffer src)
Writes the content of the specified src into this buffer. |
|
IoBuffer |
putChar(char value)
|
|
IoBuffer |
putChar(int index,
char value)
|
|
IoBuffer |
putDouble(double value)
|
|
IoBuffer |
putDouble(int index,
double value)
|
|
IoBuffer |
putEnum(Enum<?> e)
Writes an enum's ordinal value to the buffer as a byte. |
|
IoBuffer |
putEnum(int index,
Enum<?> e)
Writes an enum's ordinal value to the buffer as a byte. |
|
IoBuffer |
putEnumInt(Enum<?> e)
Writes an enum's ordinal value to the buffer as an integer. |
|
IoBuffer |
putEnumInt(int index,
Enum<?> e)
Writes an enum's ordinal value to the buffer as an integer. |
|
|
putEnumSet(int index,
Set<E> set)
Writes the specified Set to the buffer as a byte sized bit vector. |
|
|
putEnumSet(Set<E> set)
Writes the specified Set to the buffer as a byte sized bit vector. |
|
|
putEnumSetInt(int index,
Set<E> set)
Writes the specified Set to the buffer as an int sized bit vector. |
|
|
putEnumSetInt(Set<E> set)
Writes the specified Set to the buffer as an int sized bit vector. |
|
|
putEnumSetLong(int index,
Set<E> set)
Writes the specified Set to the buffer as a long sized bit vector. |
|
|
putEnumSetLong(Set<E> set)
Writes the specified Set to the buffer as a long sized bit vector. |
|
|
putEnumSetShort(int index,
Set<E> set)
Writes the specified Set to the buffer as a short sized bit vector. |
|
|
putEnumSetShort(Set<E> set)
Writes the specified Set to the buffer as a short sized bit vector. |
|
IoBuffer |
putEnumShort(Enum<?> e)
Writes an enum's ordinal value to the buffer as a short. |
|
IoBuffer |
putEnumShort(int index,
Enum<?> e)
Writes an enum's ordinal value to the buffer as a short. |
|
IoBuffer |
putFloat(float value)
|
|
IoBuffer |
putFloat(int index,
float value)
|
|
IoBuffer |
putInt(int value)
|
|
IoBuffer |
putInt(int index,
int value)
|
|
IoBuffer |
putLong(int index,
long value)
|
|
IoBuffer |
putLong(long value)
|
|
IoBuffer |
putMediumInt(int value)
Relative put method for writing a medium int value. |
|
IoBuffer |
putMediumInt(int index,
int value)
Absolute put method for writing a medium int value. |
|
IoBuffer |
putObject(Object o)
Writes the specified Java object to the buffer. |
|
IoBuffer |
putPrefixedString(CharSequence in,
CharsetEncoder encoder)
Writes the content of in into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder . |
|
IoBuffer |
putPrefixedString(CharSequence in,
int prefixLength,
CharsetEncoder encoder)
Writes the content of in into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder . |
|
IoBuffer |
putPrefixedString(CharSequence in,
int prefixLength,
int padding,
byte padValue,
CharsetEncoder encoder)
Writes the content of in into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder . |
|
IoBuffer |
putPrefixedString(CharSequence in,
int prefixLength,
int padding,
CharsetEncoder encoder)
Writes the content of in into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder . |
|
IoBuffer |
putShort(int index,
short value)
|
|
IoBuffer |
putShort(short value)
|
|
IoBuffer |
putString(CharSequence in,
CharsetEncoder encoder)
Writes the content of in into this buffer using the
specified encoder . |
|
IoBuffer |
putString(CharSequence in,
int fieldSize,
CharsetEncoder encoder)
Writes the content of in into this buffer as a
NUL -terminated string using the specified
encoder . |
|
int |
remaining()
|
|
IoBuffer |
reset()
|
|
IoBuffer |
rewind()
|
|
IoBuffer |
setAutoExpand(boolean autoExpand)
Turns on or off autoExpand. |
|
IoBuffer |
setAutoShrink(boolean autoShrink)
Turns on or off autoShrink. |
|
IoBuffer |
shrink()
Changes the capacity of this buffer so this buffer occupies as less memory as possible while retaining the position, limit and the buffer content between the position and limit. |
|
IoBuffer |
skip(int size)
Forwards the position of this buffer as the specified size
bytes. |
|
IoBuffer |
slice()
|
|
IoBuffer |
sweep()
Clears this buffer and fills its content with NUL. |
|
IoBuffer |
sweep(byte value)
double Clears this buffer and fills its content with value. |
|
String |
toString()
|
Methods inherited from class org.apache.mina.core.buffer.IoBuffer |
---|
allocate, allocate, getAllocator, isUseDirectBuffer, normalizeCapacity, setAllocator, setUseDirectBuffer, wrap, wrap, wrap |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected IoBufferWrapper(IoBuffer buf)
buf
- the buffer to be proxiedMethod Detail |
---|
public IoBuffer getParentBuffer()
public boolean isDirect()
isDirect
in class IoBuffer
ByteBuffer.isDirect()
public ByteBuffer buf()
IoBuffer
buf
in class IoBuffer
public int capacity()
capacity
in class IoBuffer
Buffer.capacity()
public int position()
position
in class IoBuffer
Buffer.position()
public IoBuffer position(int newPosition)
position
in class IoBuffer
Buffer.position(int)
public int limit()
limit
in class IoBuffer
Buffer.limit()
public IoBuffer limit(int newLimit)
limit
in class IoBuffer
Buffer.limit(int)
public IoBuffer mark()
mark
in class IoBuffer
Buffer.mark()
public IoBuffer reset()
reset
in class IoBuffer
Buffer.reset()
public IoBuffer clear()
clear
in class IoBuffer
Buffer.clear()
public IoBuffer sweep()
IoBuffer
sweep
in class IoBuffer
public IoBuffer sweep(byte value)
IoBuffer
sweep
in class IoBuffer
public IoBuffer flip()
flip
in class IoBuffer
Buffer.flip()
public IoBuffer rewind()
rewind
in class IoBuffer
Buffer.rewind()
public int remaining()
remaining
in class IoBuffer
Buffer.remaining()
public boolean hasRemaining()
hasRemaining
in class IoBuffer
Buffer.hasRemaining()
public byte get()
get
in class IoBuffer
ByteBuffer.get()
public short getUnsigned()
IoBuffer
getUnsigned
in class IoBuffer
public IoBuffer put(byte b)
put
in class IoBuffer
ByteBuffer.put(byte)
public byte get(int index)
get
in class IoBuffer
ByteBuffer.get(int)
public short getUnsigned(int index)
IoBuffer
getUnsigned
in class IoBuffer
public IoBuffer put(int index, byte b)
put
in class IoBuffer
ByteBuffer.put(int, byte)
public IoBuffer get(byte[] dst, int offset, int length)
get
in class IoBuffer
ByteBuffer.get(byte[], int, int)
public IoBuffer getSlice(int index, int length)
IoBuffer
getSlice
in class IoBuffer
public IoBuffer getSlice(int length)
IoBuffer
getSlice
in class IoBuffer
public IoBuffer get(byte[] dst)
get
in class IoBuffer
ByteBuffer.get(byte[])
public IoBuffer put(IoBuffer src)
IoBuffer
put
in class IoBuffer
public IoBuffer put(ByteBuffer src)
IoBuffer
put
in class IoBuffer
public IoBuffer put(byte[] src, int offset, int length)
put
in class IoBuffer
ByteBuffer.put(byte[], int, int)
public IoBuffer put(byte[] src)
put
in class IoBuffer
ByteBuffer.put(byte[])
public IoBuffer compact()
compact
in class IoBuffer
ByteBuffer.compact()
public String toString()
toString
in class Object
public int hashCode()
hashCode
in class Object
public boolean equals(Object ob)
equals
in class Object
public int compareTo(IoBuffer that)
public ByteOrder order()
order
in class IoBuffer
ByteBuffer.order()
public IoBuffer order(ByteOrder bo)
order
in class IoBuffer
ByteBuffer.order(ByteOrder)
public char getChar()
getChar
in class IoBuffer
ByteBuffer.getChar()
public IoBuffer putChar(char value)
putChar
in class IoBuffer
ByteBuffer.putChar(char)
public char getChar(int index)
getChar
in class IoBuffer
ByteBuffer.getChar(int)
public IoBuffer putChar(int index, char value)
putChar
in class IoBuffer
ByteBuffer.putChar(int, char)
public CharBuffer asCharBuffer()
asCharBuffer
in class IoBuffer
ByteBuffer.asCharBuffer()
public short getShort()
getShort
in class IoBuffer
ByteBuffer.getShort()
public int getUnsignedShort()
IoBuffer
getUnsignedShort
in class IoBuffer
public IoBuffer putShort(short value)
putShort
in class IoBuffer
ByteBuffer.putShort(short)
public short getShort(int index)
getShort
in class IoBuffer
ByteBuffer.getShort()
public int getUnsignedShort(int index)
IoBuffer
getUnsignedShort
in class IoBuffer
public IoBuffer putShort(int index, short value)
putShort
in class IoBuffer
ByteBuffer.putShort(int, short)
public ShortBuffer asShortBuffer()
asShortBuffer
in class IoBuffer
ByteBuffer.asShortBuffer()
public int getInt()
getInt
in class IoBuffer
ByteBuffer.getInt()
public long getUnsignedInt()
IoBuffer
getUnsignedInt
in class IoBuffer
public IoBuffer putInt(int value)
putInt
in class IoBuffer
ByteBuffer.putInt(int)
public int getInt(int index)
getInt
in class IoBuffer
ByteBuffer.getInt(int)
public long getUnsignedInt(int index)
IoBuffer
getUnsignedInt
in class IoBuffer
public IoBuffer putInt(int index, int value)
putInt
in class IoBuffer
ByteBuffer.putInt(int, int)
public IntBuffer asIntBuffer()
asIntBuffer
in class IoBuffer
ByteBuffer.asIntBuffer()
public long getLong()
getLong
in class IoBuffer
ByteBuffer.getLong()
public IoBuffer putLong(long value)
putLong
in class IoBuffer
ByteBuffer.putLong(int, long)
public long getLong(int index)
getLong
in class IoBuffer
ByteBuffer.getLong(int)
public IoBuffer putLong(int index, long value)
putLong
in class IoBuffer
ByteBuffer.putLong(int, long)
public LongBuffer asLongBuffer()
asLongBuffer
in class IoBuffer
ByteBuffer.asLongBuffer()
public float getFloat()
getFloat
in class IoBuffer
ByteBuffer.getFloat()
public IoBuffer putFloat(float value)
putFloat
in class IoBuffer
ByteBuffer.putFloat(float)
public float getFloat(int index)
getFloat
in class IoBuffer
ByteBuffer.getFloat(int)
public IoBuffer putFloat(int index, float value)
putFloat
in class IoBuffer
ByteBuffer.putFloat(int, float)
public FloatBuffer asFloatBuffer()
asFloatBuffer
in class IoBuffer
ByteBuffer.asFloatBuffer()
public double getDouble()
getDouble
in class IoBuffer
ByteBuffer.getDouble()
public IoBuffer putDouble(double value)
putDouble
in class IoBuffer
ByteBuffer.putDouble(double)
public double getDouble(int index)
getDouble
in class IoBuffer
ByteBuffer.getDouble(int)
public IoBuffer putDouble(int index, double value)
putDouble
in class IoBuffer
ByteBuffer.putDouble(int, double)
public DoubleBuffer asDoubleBuffer()
asDoubleBuffer
in class IoBuffer
ByteBuffer.asDoubleBuffer()
public String getHexDump()
IoBuffer
getHexDump
in class IoBuffer
public String getString(int fieldSize, CharsetDecoder decoder) throws CharacterCodingException
IoBuffer
NUL
-terminated string from this buffer using the
specified decoder
and returns it.
getString
in class IoBuffer
fieldSize
- the maximum number of bytes to read
CharacterCodingException
public String getString(CharsetDecoder decoder) throws CharacterCodingException
IoBuffer
NUL
-terminated string from this buffer using the
specified decoder
and returns it. This method reads
until the limit of this buffer if no NUL is found.
getString
in class IoBuffer
CharacterCodingException
public String getPrefixedString(CharsetDecoder decoder) throws CharacterCodingException
IoBuffer
decoder
and returns it.
This method is a shortcut for getPrefixedString(2, decoder).
getPrefixedString
in class IoBuffer
CharacterCodingException
public String getPrefixedString(int prefixLength, CharsetDecoder decoder) throws CharacterCodingException
IoBuffer
decoder
and returns it.
getPrefixedString
in class IoBuffer
prefixLength
- the length of the length field (1, 2, or 4)
CharacterCodingException
public IoBuffer putString(CharSequence in, int fieldSize, CharsetEncoder encoder) throws CharacterCodingException
IoBuffer
in
into this buffer as a
NUL
-terminated string using the specified
encoder
.
If the charset name of the encoder is UTF-16, you cannot specify
odd fieldSize
, and this method will append two
NUL
s as a terminator.
Please note that this method doesn't terminate with NUL
if the input string is longer than fieldSize.
putString
in class IoBuffer
fieldSize
- the maximum number of bytes to write
CharacterCodingException
public IoBuffer putString(CharSequence in, CharsetEncoder encoder) throws CharacterCodingException
IoBuffer
in
into this buffer using the
specified encoder
. This method doesn't terminate
string with NUL. You have to do it by yourself.
putString
in class IoBuffer
CharacterCodingException
public IoBuffer putPrefixedString(CharSequence in, CharsetEncoder encoder) throws CharacterCodingException
IoBuffer
in
into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder
.
This method is a shortcut for putPrefixedString(in, 2, 0, encoder).
putPrefixedString
in class IoBuffer
CharacterCodingException
public IoBuffer putPrefixedString(CharSequence in, int prefixLength, CharsetEncoder encoder) throws CharacterCodingException
IoBuffer
in
into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder
.
This method is a shortcut for putPrefixedString(in, prefixLength, 0, encoder).
putPrefixedString
in class IoBuffer
prefixLength
- the length of the length field (1, 2, or 4)
CharacterCodingException
public IoBuffer putPrefixedString(CharSequence in, int prefixLength, int padding, CharsetEncoder encoder) throws CharacterCodingException
IoBuffer
in
into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder
.
This method is a shortcut for putPrefixedString(in, prefixLength, padding, ( byte ) 0, encoder).
putPrefixedString
in class IoBuffer
prefixLength
- the length of the length field (1, 2, or 4)padding
- the number of padded NULs (1 (or 0), 2, or 4)
CharacterCodingException
public IoBuffer putPrefixedString(CharSequence in, int prefixLength, int padding, byte padValue, CharsetEncoder encoder) throws CharacterCodingException
IoBuffer
in
into this buffer as a
string which has a 16-bit length field before the actual
encoded string, using the specified encoder
.
putPrefixedString
in class IoBuffer
prefixLength
- the length of the length field (1, 2, or 4)padding
- the number of padded bytes (1 (or 0), 2, or 4)padValue
- the value of padded bytes
CharacterCodingException
public IoBuffer skip(int size)
IoBuffer
size
bytes.
skip
in class IoBuffer
public IoBuffer fill(byte value, int size)
IoBuffer
fill
in class IoBuffer
public IoBuffer fillAndReset(byte value, int size)
IoBuffer
fillAndReset
in class IoBuffer
public IoBuffer fill(int size)
IoBuffer
NUL (0x00)
.
This method moves buffer position forward.
fill
in class IoBuffer
public IoBuffer fillAndReset(int size)
IoBuffer
NUL (0x00)
.
This method does not change buffer position.
fillAndReset
in class IoBuffer
public boolean isAutoExpand()
IoBuffer
isAutoExpand
in class IoBuffer
public IoBuffer setAutoExpand(boolean autoExpand)
IoBuffer
setAutoExpand
in class IoBuffer
public IoBuffer expand(int pos, int expectedRemaining)
IoBuffer
expand
in class IoBuffer
public IoBuffer expand(int expectedRemaining)
IoBuffer
expand
in class IoBuffer
public Object getObject() throws ClassNotFoundException
IoBuffer
ClassLoader
of the current thread.
getObject
in class IoBuffer
ClassNotFoundException
public Object getObject(ClassLoader classLoader) throws ClassNotFoundException
IoBuffer
getObject
in class IoBuffer
ClassNotFoundException
public IoBuffer putObject(Object o)
IoBuffer
putObject
in class IoBuffer
public InputStream asInputStream()
IoBuffer
InputStream
that reads the data from this buffer.
InputStream.read()
returns -1 if the buffer position
reaches to the limit.
asInputStream
in class IoBuffer
public OutputStream asOutputStream()
IoBuffer
OutputStream
that appends the data into this buffer.
Please note that the OutputStream.write(int)
will throw a
BufferOverflowException
instead of an IOException
in case of buffer overflow. Please set autoExpand property by
calling IoBuffer.setAutoExpand(boolean)
to prevent the unexpected runtime
exception.
asOutputStream
in class IoBuffer
public IoBuffer duplicate()
duplicate
in class IoBuffer
ByteBuffer.duplicate()
public IoBuffer slice()
slice
in class IoBuffer
ByteBuffer.slice()
public IoBuffer asReadOnlyBuffer()
asReadOnlyBuffer
in class IoBuffer
ByteBuffer.asReadOnlyBuffer()
public byte[] array()
array
in class IoBuffer
ByteBuffer.array()
public int arrayOffset()
arrayOffset
in class IoBuffer
ByteBuffer.arrayOffset()
public int minimumCapacity()
IoBuffer
IoBuffer.compact()
and
IoBuffer.shrink()
operation. The default value is the initial capacity
of the buffer.
minimumCapacity
in class IoBuffer
public IoBuffer minimumCapacity(int minimumCapacity)
IoBuffer
IoBuffer.compact()
and
IoBuffer.shrink()
operation. The default value is the initial capacity
of the buffer.
minimumCapacity
in class IoBuffer
public IoBuffer capacity(int newCapacity)
IoBuffer
capacity
in class IoBuffer
public boolean isReadOnly()
isReadOnly
in class IoBuffer
Buffer.isReadOnly()
public int markValue()
IoBuffer
markValue
in class IoBuffer
public boolean hasArray()
hasArray
in class IoBuffer
ByteBuffer.hasArray()
public void free()
IoBuffer
IoBufferAllocator
implementations.
It is not mandatory to call this method, but you might want to invoke this
method for maximum performance.
free
in class IoBuffer
public boolean isDerived()
IoBuffer
IoBuffer.duplicate()
, IoBuffer.slice()
or IoBuffer.asReadOnlyBuffer()
.
isDerived
in class IoBuffer
public boolean isAutoShrink()
IoBuffer
isAutoShrink
in class IoBuffer
public IoBuffer setAutoShrink(boolean autoShrink)
IoBuffer
setAutoShrink
in class IoBuffer
public IoBuffer shrink()
IoBuffer
IoBuffer.minimumCapacity()
.
The mark is discarded once the capacity changes.
shrink
in class IoBuffer
public int getMediumInt()
IoBuffer
Reads the next three bytes at this buffer's current position, composing them into an int value according to the current byte order, and then increments the position by three.
getMediumInt
in class IoBuffer
public int getUnsignedMediumInt()
IoBuffer
Reads the next three bytes at this buffer's current position, composing them into an int value according to the current byte order, and then increments the position by three.
getUnsignedMediumInt
in class IoBuffer
public int getMediumInt(int index)
IoBuffer
Reads the next three bytes at this buffer's current position, composing them into an int value according to the current byte order.
getMediumInt
in class IoBuffer
index
- The index from which the medium int will be read
public int getUnsignedMediumInt(int index)
IoBuffer
Reads the next three bytes at this buffer's current position, composing them into an int value according to the current byte order.
getUnsignedMediumInt
in class IoBuffer
index
- The index from which the unsigned medium int will be read
public IoBuffer putMediumInt(int value)
IoBuffer
Writes three bytes containing the given int value, in the current byte order, into this buffer at the current position, and then increments the position by three.
putMediumInt
in class IoBuffer
value
- The medium int value to be written
public IoBuffer putMediumInt(int index, int value)
IoBuffer
Writes three bytes containing the given int value, in the current byte order, into this buffer at the given index.
putMediumInt
in class IoBuffer
index
- The index at which the bytes will be writtenvalue
- The medium int value to be written
public String getHexDump(int lengthLimit)
IoBuffer
getHexDump
in class IoBuffer
lengthLimit
- The maximum number of bytes to dump from
the current buffer position.
public boolean prefixedDataAvailable(int prefixLength)
IoBuffer
IoBuffer.prefixedDataAvailable(int, int)
instead.
prefixedDataAvailable
in class IoBuffer
prefixLength
- the length of the prefix field (1, 2, or 4)public boolean prefixedDataAvailable(int prefixLength, int maxDataLength)
IoBuffer
prefixedDataAvailable
in class IoBuffer
prefixLength
- the length of the prefix field (1, 2, or 4)maxDataLength
- the allowed maximum of the read data lengthpublic int indexOf(byte b)
IoBuffer
indexOf
in class IoBuffer
public <E extends Enum<E>> E getEnum(Class<E> enumClass)
IoBuffer
getEnum
in class IoBuffer
E
- The enum type to returnenumClass
- The enum's class objectpublic <E extends Enum<E>> E getEnum(int index, Class<E> enumClass)
IoBuffer
getEnum
in class IoBuffer
E
- The enum type to returnindex
- the index from which the byte will be readenumClass
- The enum's class objectpublic <E extends Enum<E>> E getEnumShort(Class<E> enumClass)
IoBuffer
getEnumShort
in class IoBuffer
E
- The enum type to returnenumClass
- The enum's class objectpublic <E extends Enum<E>> E getEnumShort(int index, Class<E> enumClass)
IoBuffer
getEnumShort
in class IoBuffer
E
- The enum type to returnindex
- the index from which the bytes will be readenumClass
- The enum's class objectpublic <E extends Enum<E>> E getEnumInt(Class<E> enumClass)
IoBuffer
getEnumInt
in class IoBuffer
E
- The enum type to returnenumClass
- The enum's class objectpublic <E extends Enum<E>> E getEnumInt(int index, Class<E> enumClass)
IoBuffer
getEnumInt
in class IoBuffer
E
- The enum type to returnindex
- the index from which the bytes will be readenumClass
- The enum's class objectpublic IoBuffer putEnum(Enum<?> e)
IoBuffer
putEnum
in class IoBuffer
e
- The enum to write to the bufferpublic IoBuffer putEnum(int index, Enum<?> e)
IoBuffer
putEnum
in class IoBuffer
index
- The index at which the byte will be writtene
- The enum to write to the bufferpublic IoBuffer putEnumShort(Enum<?> e)
IoBuffer
putEnumShort
in class IoBuffer
e
- The enum to write to the bufferpublic IoBuffer putEnumShort(int index, Enum<?> e)
IoBuffer
putEnumShort
in class IoBuffer
index
- The index at which the bytes will be writtene
- The enum to write to the bufferpublic IoBuffer putEnumInt(Enum<?> e)
IoBuffer
putEnumInt
in class IoBuffer
e
- The enum to write to the bufferpublic IoBuffer putEnumInt(int index, Enum<?> e)
IoBuffer
putEnumInt
in class IoBuffer
index
- The index at which the bytes will be writtene
- The enum to write to the bufferpublic <E extends Enum<E>> EnumSet<E> getEnumSet(Class<E> enumClass)
IoBuffer
EnumSet
.
Each bit is mapped to a value in the specified enum. The least significant bit maps to the first entry in the specified enum and each subsequent bit maps to each subsequent bit as mapped to the subsequent enum value.
getEnumSet
in class IoBuffer
E
- the enum typeenumClass
- the enum class used to create the EnumSet
public <E extends Enum<E>> EnumSet<E> getEnumSet(int index, Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSet
in class IoBuffer
E
- the enum typeindex
- the index from which the byte will be readenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> EnumSet<E> getEnumSetShort(Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSetShort
in class IoBuffer
E
- the enum typeenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> EnumSet<E> getEnumSetShort(int index, Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSetShort
in class IoBuffer
E
- the enum typeindex
- the index from which the bytes will be readenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> EnumSet<E> getEnumSetInt(Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSetInt
in class IoBuffer
E
- the enum typeenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> EnumSet<E> getEnumSetInt(int index, Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSetInt
in class IoBuffer
E
- the enum typeindex
- the index from which the bytes will be readenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> EnumSet<E> getEnumSetLong(Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSetLong
in class IoBuffer
E
- the enum typeenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> EnumSet<E> getEnumSetLong(int index, Class<E> enumClass)
IoBuffer
EnumSet
.
getEnumSetLong
in class IoBuffer
E
- the enum typeindex
- the index from which the bytes will be readenumClass
- the enum class used to create the EnumSet
IoBuffer.getEnumSet(Class)
public <E extends Enum<E>> IoBuffer putEnumSet(Set<E> set)
IoBuffer
Set
to the buffer as a byte sized bit vector.
putEnumSet
in class IoBuffer
E
- the enum type of the Setset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSet(int index, Set<E> set)
IoBuffer
Set
to the buffer as a byte sized bit vector.
putEnumSet
in class IoBuffer
E
- the enum type of the Setindex
- the index at which the byte will be writtenset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSetShort(Set<E> set)
IoBuffer
Set
to the buffer as a short sized bit vector.
putEnumSetShort
in class IoBuffer
E
- the enum type of the Setset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSetShort(int index, Set<E> set)
IoBuffer
Set
to the buffer as a short sized bit vector.
putEnumSetShort
in class IoBuffer
E
- the enum type of the Setindex
- the index at which the bytes will be writtenset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSetInt(Set<E> set)
IoBuffer
Set
to the buffer as an int sized bit vector.
putEnumSetInt
in class IoBuffer
E
- the enum type of the Setset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSetInt(int index, Set<E> set)
IoBuffer
Set
to the buffer as an int sized bit vector.
putEnumSetInt
in class IoBuffer
E
- the enum type of the Setindex
- the index at which the bytes will be writtenset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSetLong(Set<E> set)
IoBuffer
Set
to the buffer as a long sized bit vector.
putEnumSetLong
in class IoBuffer
E
- the enum type of the Setset
- the enum set to write to the bufferpublic <E extends Enum<E>> IoBuffer putEnumSetLong(int index, Set<E> set)
IoBuffer
Set
to the buffer as a long sized bit vector.
putEnumSetLong
in class IoBuffer
E
- the enum type of the Setindex
- the index at which the bytes will be writtenset
- the enum set to write to the buffer
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |