public abstract class AbstractIoBuffer extends IoBuffer
IoBuffer. This implementation assumes that
IoBuffer.buf() always returns a correct NIO ByteBuffer
instance. Most implementations could extend this class and implement their
own buffer management mechanism.IoBufferAllocator| 限定符 | 构造器和说明 |
|---|---|
protected |
AbstractIoBuffer(AbstractIoBuffer parent)
Creates a new derived buffer.
|
protected |
AbstractIoBuffer(IoBufferAllocator allocator,
int initialCapacity)
Creates a new parent buffer.
|
| 限定符和类型 | 方法和说明 |
|---|---|
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() |
protected abstract IoBuffer |
asReadOnlyBuffer0()
Implement this method to return the unexpandable read only version of
this buffer.
|
ShortBuffer |
asShortBuffer() |
protected abstract void |
buf(ByteBuffer newBuf)
Sets 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() |
protected abstract IoBuffer |
duplicate0()
Implement this method to return the unexpandable duplicate of this
buffer.
|
boolean |
equals(Object o) |
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() |
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) |
<E extends Enum<E>> |
getEnum(Class<E> enumClass)
Reads a byte from the buffer and returns the correlating enum constant
defined by the specified enum type.
|
<E extends Enum<E>> |
getEnum(int index,
Class<E> enumClass)
Reads a byte from the buffer and returns the correlating enum constant
defined by the specified enum type.
|
<E extends Enum<E>> |
getEnumInt(Class<E> enumClass)
Reads an int from the buffer and returns the correlating enum constant
defined by the specified enum type.
|
<E extends Enum<E>> |
getEnumInt(int index,
Class<E> enumClass)
Reads an int from the buffer and returns the correlating enum constant
defined by the specified enum type.
|
<E extends Enum<E>> |
getEnumSet(Class<E> enumClass)
Reads a byte sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSet(int index,
Class<E> enumClass)
Reads a byte sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSetInt(Class<E> enumClass)
Reads an int sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSetInt(int index,
Class<E> enumClass)
Reads an int sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSetLong(Class<E> enumClass)
Reads a long sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSetLong(int index,
Class<E> enumClass)
Reads a long sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSetShort(Class<E> enumClass)
Reads a short sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumSetShort(int index,
Class<E> enumClass)
Reads a short sized bit vector and converts it to an
EnumSet. |
<E extends Enum<E>> |
getEnumShort(Class<E> enumClass)
Reads a short from the buffer and returns the correlating enum constant
defined by the specified enum type.
|
<E extends Enum<E>> |
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.
|
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.
|
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.
|
<E extends Enum<E>> |
putEnumSet(int index,
Set<E> set)
Writes the specified
Set to the buffer as a byte sized bit
vector. |
<E extends Enum<E>> |
putEnumSet(Set<E> set)
Writes the specified
Set to the buffer as a byte sized bit
vector. |
<E extends Enum<E>> |
putEnumSetInt(int index,
Set<E> set)
Writes the specified
Set to the buffer as an int sized bit
vector. |
<E extends Enum<E>> |
putEnumSetInt(Set<E> set)
Writes the specified
Set to the buffer as an int sized bit
vector. |
<E extends Enum<E>> |
putEnumSetLong(int index,
Set<E> set)
Writes the specified
Set to the buffer as a long sized bit
vector. |
<E extends Enum<E>> |
putEnumSetLong(Set<E> set)
Writes the specified
Set to the buffer as a long sized bit
vector. |
<E extends Enum<E>> |
putEnumSetShort(int index,
Set<E> set)
Writes the specified
Set to the buffer as a short sized bit
vector. |
<E extends Enum<E>> |
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 val,
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 val,
CharsetEncoder encoder)
Writes the content of
in into this buffer using the
specified encoder. |
IoBuffer |
putString(CharSequence val,
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() |
protected abstract IoBuffer |
slice0()
Implement this method to return the unexpandable slice of this buffer.
|
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() |
allocate, allocate, array, arrayOffset, buf, free, getAllocator, hasArray, isUseDirectBuffer, normalizeCapacity, setAllocator, setUseDirectBuffer, wrap, wrap, wrapprotected AbstractIoBuffer(IoBufferAllocator allocator, int initialCapacity)
allocator - The allocator to use to create new buffersinitialCapacity - The initial buffer capacity when createdprotected AbstractIoBuffer(AbstractIoBuffer parent)
parent - The buffer we get the properties frompublic final boolean isDirect()
isDirect 在类中 IoBufferByteBuffer.isDirect()public final boolean isReadOnly()
isReadOnly 在类中 IoBufferBuffer.isReadOnly()protected abstract void buf(ByteBuffer newBuf)
newBuf - The buffer to store within this IoBufferpublic final int minimumCapacity()
IoBuffer.compact() and
IoBuffer.shrink() operation. The default value is the initial capacity of
the buffer.minimumCapacity 在类中 IoBufferpublic final IoBuffer minimumCapacity(int minimumCapacity)
IoBuffer.compact() and
IoBuffer.shrink() operation. The default value is the initial capacity of
the buffer.minimumCapacity 在类中 IoBufferpublic final int capacity()
capacity 在类中 IoBufferBuffer.capacity()public final IoBuffer capacity(int newCapacity)
public final boolean isAutoExpand()
isAutoExpand 在类中 IoBufferpublic final boolean isAutoShrink()
isAutoShrink 在类中 IoBufferpublic final boolean isDerived()
IoBuffer.duplicate(), IoBuffer.slice() or
IoBuffer.asReadOnlyBuffer().public final IoBuffer setAutoExpand(boolean autoExpand)
setAutoExpand 在类中 IoBufferpublic final IoBuffer setAutoShrink(boolean autoShrink)
setAutoShrink 在类中 IoBufferpublic final IoBuffer expand(int expectedRemaining)
public final IoBuffer expand(int pos, int expectedRemaining)
public final IoBuffer shrink()
IoBuffer.minimumCapacity(). The mark is discarded once
the capacity changes.public final int position()
position 在类中 IoBufferBuffer.position()public final IoBuffer position(int newPosition)
position 在类中 IoBufferBuffer.position(int)public final int limit()
limit 在类中 IoBufferBuffer.limit()public final IoBuffer limit(int newLimit)
limit 在类中 IoBufferBuffer.limit(int)public final IoBuffer mark()
mark 在类中 IoBufferBuffer.mark()public final int markValue()
public final IoBuffer reset()
reset 在类中 IoBufferBuffer.reset()public final IoBuffer clear()
clear 在类中 IoBufferBuffer.clear()public final IoBuffer sweep()
public final IoBuffer sweep(byte value)
public final IoBuffer flip()
flip 在类中 IoBufferBuffer.flip()public final IoBuffer rewind()
rewind 在类中 IoBufferBuffer.rewind()public final int remaining()
remaining 在类中 IoBufferBuffer.remaining()public final boolean hasRemaining()
hasRemaining 在类中 IoBufferBuffer.hasRemaining()public final byte get()
get 在类中 IoBufferByteBuffer.get()public final short getUnsigned()
getUnsigned 在类中 IoBufferpublic final IoBuffer put(byte b)
put 在类中 IoBufferByteBuffer.put(byte)public final byte get(int index)
get 在类中 IoBufferByteBuffer.get(int)public final short getUnsigned(int index)
getUnsigned 在类中 IoBufferpublic final IoBuffer put(int index, byte b)
put 在类中 IoBufferByteBuffer.put(int, byte)public final IoBuffer get(byte[] dst, int offset, int length)
get 在类中 IoBufferByteBuffer.get(byte[], int, int)public final IoBuffer put(ByteBuffer src)
public final IoBuffer put(byte[] src, int offset, int length)
put 在类中 IoBufferByteBuffer.put(byte[], int, int)public final IoBuffer compact()
compact 在类中 IoBufferByteBuffer.compact()public final ByteOrder order()
order 在类中 IoBufferByteBuffer.order()public final IoBuffer order(ByteOrder bo)
order 在类中 IoBufferByteBuffer.order(ByteOrder)public final char getChar()
getChar 在类中 IoBufferByteBuffer.getChar()public final IoBuffer putChar(char value)
putChar 在类中 IoBufferByteBuffer.putChar(char)public final char getChar(int index)
getChar 在类中 IoBufferByteBuffer.getChar(int)public final IoBuffer putChar(int index, char value)
putChar 在类中 IoBufferByteBuffer.putChar(int, char)public final CharBuffer asCharBuffer()
asCharBuffer 在类中 IoBufferByteBuffer.asCharBuffer()public final short getShort()
getShort 在类中 IoBufferByteBuffer.getShort()public final IoBuffer putShort(short value)
putShort 在类中 IoBufferByteBuffer.putShort(short)public final short getShort(int index)
getShort 在类中 IoBufferByteBuffer.getShort()public final IoBuffer putShort(int index, short value)
putShort 在类中 IoBufferByteBuffer.putShort(int, short)public final ShortBuffer asShortBuffer()
asShortBuffer 在类中 IoBufferByteBuffer.asShortBuffer()public final int getInt()
getInt 在类中 IoBufferByteBuffer.getInt()public final IoBuffer putInt(int value)
putInt 在类中 IoBufferByteBuffer.putInt(int)public final int getInt(int index)
getInt 在类中 IoBufferByteBuffer.getInt(int)public final IoBuffer putInt(int index, int value)
putInt 在类中 IoBufferByteBuffer.putInt(int, int)public final IntBuffer asIntBuffer()
asIntBuffer 在类中 IoBufferByteBuffer.asIntBuffer()public final long getLong()
getLong 在类中 IoBufferByteBuffer.getLong()public final IoBuffer putLong(long value)
putLong 在类中 IoBufferByteBuffer.putLong(int, long)public final long getLong(int index)
getLong 在类中 IoBufferByteBuffer.getLong(int)public final IoBuffer putLong(int index, long value)
putLong 在类中 IoBufferByteBuffer.putLong(int, long)public final LongBuffer asLongBuffer()
asLongBuffer 在类中 IoBufferByteBuffer.asLongBuffer()public final float getFloat()
getFloat 在类中 IoBufferByteBuffer.getFloat()public final IoBuffer putFloat(float value)
putFloat 在类中 IoBufferByteBuffer.putFloat(float)public final float getFloat(int index)
getFloat 在类中 IoBufferByteBuffer.getFloat(int)public final IoBuffer putFloat(int index, float value)
putFloat 在类中 IoBufferByteBuffer.putFloat(int, float)public final FloatBuffer asFloatBuffer()
asFloatBuffer 在类中 IoBufferByteBuffer.asFloatBuffer()public final double getDouble()
getDouble 在类中 IoBufferByteBuffer.getDouble()public final IoBuffer putDouble(double value)
putDouble 在类中 IoBufferByteBuffer.putDouble(double)public final double getDouble(int index)
getDouble 在类中 IoBufferByteBuffer.getDouble(int)public final IoBuffer putDouble(int index, double value)
putDouble 在类中 IoBufferByteBuffer.putDouble(int, double)public final DoubleBuffer asDoubleBuffer()
asDoubleBuffer 在类中 IoBufferByteBuffer.asDoubleBuffer()public final IoBuffer asReadOnlyBuffer()
asReadOnlyBuffer 在类中 IoBufferByteBuffer.asReadOnlyBuffer()protected abstract IoBuffer asReadOnlyBuffer0()
public final IoBuffer duplicate()
duplicate 在类中 IoBufferByteBuffer.duplicate()protected abstract IoBuffer duplicate0()
public final IoBuffer slice()
slice 在类中 IoBufferByteBuffer.slice()public final IoBuffer getSlice(int index, int length)
protected abstract IoBuffer slice0()
public int compareTo(IoBuffer that)
public IoBuffer get(byte[] dst)
get 在类中 IoBufferByteBuffer.get(byte[])public IoBuffer put(byte[] src)
put 在类中 IoBufferByteBuffer.put(byte[])public int getUnsignedShort()
getUnsignedShort 在类中 IoBufferpublic int getUnsignedShort(int index)
getUnsignedShort 在类中 IoBufferpublic long getUnsignedInt()
getUnsignedInt 在类中 IoBufferpublic int getMediumInt()
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 在类中 IoBufferpublic int getUnsignedMediumInt()
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 在类中 IoBufferpublic int getMediumInt(int index)
Reads the next three bytes at this buffer's current position, composing them into an int value according to the current byte order.
getMediumInt 在类中 IoBufferindex - The index from which the medium int will be readpublic int getUnsignedMediumInt(int index)
Reads the next three bytes at this buffer's current position, composing them into an int value according to the current byte order.
getUnsignedMediumInt 在类中 IoBufferindex - The index from which the unsigned medium int will be readpublic IoBuffer putMediumInt(int value)
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 在类中 IoBuffervalue - The medium int value to be writtenpublic IoBuffer putMediumInt(int index, int value)
Writes three bytes containing the given int value, in the current byte order, into this buffer at the given index.
putMediumInt 在类中 IoBufferindex - The index at which the bytes will be writtenvalue - The medium int value to be writtenpublic long getUnsignedInt(int index)
getUnsignedInt 在类中 IoBufferpublic InputStream asInputStream()
InputStream that reads the data from this buffer.
InputStream.read() returns -1 if the buffer position
reaches to the limit.asInputStream 在类中 IoBufferpublic OutputStream asOutputStream()
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 在类中 IoBufferpublic String getHexDump()
getHexDump 在类中 IoBufferpublic String getHexDump(int lengthLimit)
getHexDump 在类中 IoBufferlengthLimit - The maximum number of bytes to dump from the current buffer
position.public String getString(CharsetDecoder decoder) throws CharacterCodingException
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 在类中 IoBufferCharacterCodingExceptionpublic String getString(int fieldSize, CharsetDecoder decoder) throws CharacterCodingException
NUL-terminated string from this buffer using the
specified decoder and returns it.getString 在类中 IoBufferfieldSize - the maximum number of bytes to readCharacterCodingExceptionpublic IoBuffer putString(CharSequence val, CharsetEncoder encoder) throws CharacterCodingException
in into this buffer using the
specified encoder. This method doesn't terminate string with
NUL. You have to do it by yourself.putString 在类中 IoBufferCharacterCodingExceptionpublic IoBuffer putString(CharSequence val, int fieldSize, CharsetEncoder encoder) throws CharacterCodingException
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 NULs
as a terminator.
Please note that this method doesn't terminate with NUL if
the input string is longer than fieldSize.
putString 在类中 IoBufferfieldSize - the maximum number of bytes to writeCharacterCodingExceptionpublic String getPrefixedString(CharsetDecoder decoder) throws CharacterCodingException
decoder and returns it. This
method is a shortcut for getPrefixedString(2, decoder).getPrefixedString 在类中 IoBufferCharacterCodingExceptionpublic String getPrefixedString(int prefixLength, CharsetDecoder decoder) throws CharacterCodingException
decoder and returns it.getPrefixedString 在类中 IoBufferprefixLength - the length of the length field (1, 2, or 4)decoder - the decoder to use for decoding the stringCharacterCodingException - when decoding failsBufferUnderflowException - when there is not enough data availablepublic IoBuffer putPrefixedString(CharSequence in, CharsetEncoder encoder) throws CharacterCodingException
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 在类中 IoBufferCharacterCodingExceptionpublic IoBuffer putPrefixedString(CharSequence in, int prefixLength, CharsetEncoder encoder) throws CharacterCodingException
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 在类中 IoBufferprefixLength - the length of the length field (1, 2, or 4)CharacterCodingExceptionpublic IoBuffer putPrefixedString(CharSequence in, int prefixLength, int padding, CharsetEncoder encoder) throws CharacterCodingException
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 在类中 IoBufferprefixLength - the length of the length field (1, 2, or 4)padding - the number of padded NULs (1 (or 0), 2, or 4)CharacterCodingExceptionpublic IoBuffer putPrefixedString(CharSequence val, int prefixLength, int padding, byte padValue, CharsetEncoder encoder) throws CharacterCodingException
in into this buffer as a string which
has a 16-bit length field before the actual encoded string, using the
specified encoder.putPrefixedString 在类中 IoBufferprefixLength - 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 bytesCharacterCodingExceptionpublic Object getObject() throws ClassNotFoundException
ClassLoader
of the current thread.getObject 在类中 IoBufferClassNotFoundExceptionpublic Object getObject(ClassLoader classLoader) throws ClassNotFoundException
getObject 在类中 IoBufferClassNotFoundExceptionpublic boolean prefixedDataAvailable(int prefixLength)
IoBuffer.prefixedDataAvailable(int, int) instead.prefixedDataAvailable 在类中 IoBufferprefixLength - the length of the prefix field (1, 2, or 4)public boolean prefixedDataAvailable(int prefixLength,
int maxDataLength)
prefixedDataAvailable 在类中 IoBufferprefixLength - the length of the prefix field (1, 2, or 4)maxDataLength - the allowed maximum of the read data lengthpublic int indexOf(byte b)
public IoBuffer skip(int size)
size
bytes.public IoBuffer fill(byte value, int size)
public IoBuffer fillAndReset(byte value, int size)
fillAndReset 在类中 IoBufferpublic IoBuffer fill(int size)
NUL (0x00). This method moves buffer
position forward.public IoBuffer fillAndReset(int size)
NUL (0x00). This method does not
change buffer position.fillAndReset 在类中 IoBufferpublic <E extends Enum<E>> E getEnum(Class<E> enumClass)
public <E extends Enum<E>> E getEnum(int index, Class<E> enumClass)
public <E extends Enum<E>> E getEnumShort(Class<E> enumClass)
getEnumShort 在类中 IoBufferE - The enum type to returnenumClass - The enum's class objectpublic <E extends Enum<E>> E getEnumShort(int index, Class<E> enumClass)
getEnumShort 在类中 IoBufferE - 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)
getEnumInt 在类中 IoBufferE - The enum type to returnenumClass - The enum's class objectpublic <E extends Enum<E>> E getEnumInt(int index, Class<E> enumClass)
getEnumInt 在类中 IoBufferE - The enum type to returnindex - the index from which the bytes will be readenumClass - The enum's class objectpublic IoBuffer putEnum(int index, Enum<?> e)
public IoBuffer putEnumShort(Enum<?> e)
putEnumShort 在类中 IoBuffere - The enum to write to the bufferpublic IoBuffer putEnumShort(int index, Enum<?> e)
putEnumShort 在类中 IoBufferindex - The index at which the bytes will be writtene - The enum to write to the bufferpublic IoBuffer putEnumInt(Enum<?> e)
putEnumInt 在类中 IoBuffere - The enum to write to the bufferpublic IoBuffer putEnumInt(int index, Enum<?> e)
putEnumInt 在类中 IoBufferindex - 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)
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 在类中 IoBufferE - the enum typeenumClass - the enum class used to create the EnumSetpublic <E extends Enum<E>> EnumSet<E> getEnumSet(int index, Class<E> enumClass)
EnumSet.getEnumSet 在类中 IoBufferE - the enum typeindex - the index from which the byte will be readenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> EnumSet<E> getEnumSetShort(Class<E> enumClass)
EnumSet.getEnumSetShort 在类中 IoBufferE - the enum typeenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> EnumSet<E> getEnumSetShort(int index, Class<E> enumClass)
EnumSet.getEnumSetShort 在类中 IoBufferE - the enum typeindex - the index from which the bytes will be readenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> EnumSet<E> getEnumSetInt(Class<E> enumClass)
EnumSet.getEnumSetInt 在类中 IoBufferE - the enum typeenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> EnumSet<E> getEnumSetInt(int index, Class<E> enumClass)
EnumSet.getEnumSetInt 在类中 IoBufferE - the enum typeindex - the index from which the bytes will be readenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> EnumSet<E> getEnumSetLong(Class<E> enumClass)
EnumSet.getEnumSetLong 在类中 IoBufferE - the enum typeenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> EnumSet<E> getEnumSetLong(int index, Class<E> enumClass)
EnumSet.getEnumSetLong 在类中 IoBufferE - the enum typeindex - the index from which the bytes will be readenumClass - the enum class used to create the EnumSetIoBuffer.getEnumSet(Class)public <E extends Enum<E>> IoBuffer putEnumSet(Set<E> set)
Set to the buffer as a byte sized bit
vector.putEnumSet 在类中 IoBufferE - 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)
Set to the buffer as a byte sized bit
vector.putEnumSet 在类中 IoBufferE - 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)
Set to the buffer as a short sized bit
vector.putEnumSetShort 在类中 IoBufferE - 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)
Set to the buffer as a short sized bit
vector.putEnumSetShort 在类中 IoBufferE - 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)
Set to the buffer as an int sized bit
vector.putEnumSetInt 在类中 IoBufferE - 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)
Set to the buffer as an int sized bit
vector.putEnumSetInt 在类中 IoBufferE - 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)
Set to the buffer as a long sized bit
vector.putEnumSetLong 在类中 IoBufferE - 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)
Set to the buffer as a long sized bit
vector.putEnumSetLong 在类中 IoBufferE - the enum type of the Setindex - the index at which the bytes will be writtenset - the enum set to write to the bufferCopyright © 2013. All Rights Reserved.