Class BufferByteArray
java.lang.Object
org.apache.mina.util.byteaccess.AbstractByteArray
org.apache.mina.util.byteaccess.BufferByteArray
- All Implemented Interfaces:
ByteArray, IoAbsoluteReader, IoAbsoluteWriter
- Direct Known Subclasses:
ByteArrayPool.DirectBufferByteArray
A
ByteArray backed by a IoBuffer. This class
is abstract. Subclasses need to override the free() method. An
implementation backed by a heap IoBuffer can be created with
a SimpleByteArrayFactory.-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface ByteArray
ByteArray.Cursor -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of BufferByteArray and uses the suppliedIoBufferto back this class -
Method Summary
Modifier and TypeMethodDescriptioncursor()cursor(int index) intfirst()byteget(int index) voidGets enough bytes to fill theIoBufferfrom the given index.chargetChar(int index) doublegetDouble(int index) floatgetFloat(int index) intgetInt(int index) longgetLong(int index) shortgetShort(int index) inthashCode()intlast()order()voidSet the byte order of the array.voidput(int index, byte b) Puts abyteat the given index.voidPuts bytes from theIoBufferat the given index.voidputChar(int index, char c) Puts acharat the given index.voidputDouble(int index, double d) Puts adoubleat the given index.voidputFloat(int index, float f) Puts afloatat the given index.voidputInt(int index, int i) Puts anintat the given index.voidputLong(int index, long l) Puts alongat the given index.voidputShort(int index, short s) Puts ashortat the given index.slice(int index, int length) Creates an array with a view of part of this array.Methods inherited from class AbstractByteArray
equals, length
-
Field Details
-
bb
The backingIoBuffer.
-
-
Constructor Details
-
BufferByteArray
-
-
Method Details
-
getIoBuffers
-
getSingleIoBuffer
- Returns:
- a single
IoBufferthat backs this array. Some implementations may initially have data split across multiple buffers, so calling this method may require a new buffer to be allocated and populated.
-
slice
Creates an array with a view of part of this array. Callingfree()on the returned slice has no effect.- Parameters:
index- The starting positionlength- The number of bytes to copy- Returns:
- The ByteArray that is a view on the original array
-
cursor
- Returns:
- a cursor starting at index 0 (which may not be the start of the array).
-
cursor
- Parameters:
index- The starting point- Returns:
- a cursor starting at the given index.
-
first
public int first()- Returns:
- the index of the first byte that can be accessed.
-
last
public int last()- Returns:
- the index after the last byte that can be accessed.
-
order
- Returns:
- the order of the bytes.
-
order
Set the byte order of the array.- Parameters:
order- The ByteOrder to use
-
get
public byte get(int index) - Parameters:
index- The starting position- Returns:
- a
bytefrom the given index.
-
put
public void put(int index, byte b) Puts abyteat the given index.- Parameters:
index- The positionb- The byte to put
-
get
Gets enough bytes to fill theIoBufferfrom the given index.- Parameters:
index- The starting positionother- The IoBuffer that will be filled with the bytes
-
put
Puts bytes from theIoBufferat the given index.- Parameters:
index- The positionother- The bytes to put
-
getShort
public short getShort(int index) - Parameters:
index- The starting position- Returns:
- a
shortfrom the given index.
-
putShort
public void putShort(int index, short s) Puts ashortat the given index.- Parameters:
index- The positions- The short to put
-
getInt
public int getInt(int index) - Parameters:
index- The starting position- Returns:
- an
intfrom the given index.
-
putInt
public void putInt(int index, int i) Puts anintat the given index.- Parameters:
index- The positioni- The int to put
-
getLong
public long getLong(int index) - Parameters:
index- The starting position- Returns:
- a
longfrom the given index.
-
putLong
public void putLong(int index, long l) Puts alongat the given index.- Parameters:
index- The positionl- The long to put
-
getFloat
public float getFloat(int index) - Parameters:
index- The starting position- Returns:
- a
floatfrom the given index.
-
putFloat
public void putFloat(int index, float f) Puts afloatat the given index.- Parameters:
index- The positionf- The float to put
-
getDouble
public double getDouble(int index) - Parameters:
index- The starting position- Returns:
- a
doublefrom the given index.
-
putDouble
public void putDouble(int index, double d) Puts adoubleat the given index.- Parameters:
index- The positiond- The doubvle to put
-
getChar
public char getChar(int index) - Parameters:
index- The starting position- Returns:
- a
charfrom the given index.
-
putChar
public void putChar(int index, char c) Puts acharat the given index.- Parameters:
index- The positionc- The char to put
-
hashCode
public int hashCode()- Specified by:
hashCodein classAbstractByteArray
-