Uses of Interface
org.apache.mina.util.byteaccess.ByteArray
-
Packages that use ByteArray Package Description org.apache.mina.util.byteaccess -
-
Uses of ByteArray in org.apache.mina.util.byteaccess
Classes in org.apache.mina.util.byteaccess that implement ByteArray Modifier and Type Class Description class
BufferByteArray
AByteArray
backed by aIoBuffer
.class
CompositeByteArray
A ByteArray composed of other ByteArrays.Methods in org.apache.mina.util.byteaccess that return ByteArray Modifier and Type Method Description ByteArray
ByteArrayFactory. create(int size)
Creates an instance ofByteArray
of size specified by the size parameter.ByteArray
ByteArrayPool. create(int size)
Creates a new instance of aByteArray
ByteArray
SimpleByteArrayFactory. create(int size)
Creates an instance ofByteArray
of size specified by the size parameter.ByteArray
CompositeByteArray. getFirst()
ByteArray
CompositeByteArray. removeFirst()
Remove the firstByteArray
in the listByteArray
CompositeByteArray. removeLast()
Removes the lastByteArray
in the listByteArray
CompositeByteArray. removeTo(int index)
Remove componentByteArray
s to the given index (splitting them if necessary) and returning them in a singleByteArray
.ByteArray
BufferByteArray. slice(int index, int length)
Creates an array with a view of part of this array.ByteArray
CompositeByteArray. slice(int index, int length)
Creates an array with a view of part of this array.ByteArray
CompositeByteArrayRelativeReader. slice(int length)
ByteArray
IoAbsoluteReader. slice(int index, int length)
Creates an array with a view of part of this array.ByteArray
IoRelativeReader. slice(int length)
Methods in org.apache.mina.util.byteaccess with parameters of type ByteArray Modifier and Type Method Description void
CompositeByteArray. addFirst(ByteArray ba)
Adds the specifiedByteArray
to the first position in the listvoid
CompositeByteArray. addLast(ByteArray ba)
Adds the specifiedByteArray
to the end of the listvoid
CompositeByteArray.CursorListener. enteredFirstComponent(int componentIndex, ByteArray component)
Called when the first component in the composite is entered by the cursor.void
CompositeByteArray.CursorListener. enteredLastComponent(int componentIndex, ByteArray component)
Called when the last component in the composite is entered by the cursor.void
CompositeByteArray.CursorListener. enteredNextComponent(int componentIndex, ByteArray component)
Called when the next component in the composite is entered by the cursor.void
CompositeByteArray.CursorListener. enteredPreviousComponent(int componentIndex, ByteArray component)
Called when the previous component in the composite is entered by the cursor.void
CompositeByteArrayRelativeWriter.Flusher. flush(ByteArray ba)
Flush a byte array
-