|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ByteBuffer | |
com.amx.duet.tools.comm | Provides device communication classes and interfaces by defining devices and providing reusable device communication implementions. |
com.amx.duet.tools.lang | This package is required for all other packages. It contains an assortment of primitive object types and classes that provide base level or common functionality. |
Uses of ByteBuffer in com.amx.duet.tools.comm |
Methods in com.amx.duet.tools.comm with parameters of type ByteBuffer | |
void |
IDeviceListener.parseResponse(ByteBuffer response)
Parse a single response passed in from handleIncomingData(). |
Uses of ByteBuffer in com.amx.duet.tools.lang |
Methods in com.amx.duet.tools.lang that return ByteBuffer | |
ByteBuffer |
ByteBuffer.delete()
Removes the entire contents of this byte buffer from beginning to end. |
ByteBuffer |
ByteBuffer.delete(int len)
Removes the characters in a substring of this ByteBuffer
up to the specified length. |
ByteBuffer |
ByteBuffer.delete(int start,
int end)
Removes the characters in a substring of this ByteBuffer . |
ByteBuffer |
ByteBuffer.replace(int start,
int end,
byte[] value)
Replaces the bytes in a substring of this ByteBuffer
with bytes in the specified byte[] . |
ByteBuffer |
ByteBuffer.replace(byte[] pattern,
byte[] replace)
Removes every instance of the passed in pattern from the ByteBuffer and replaces them with the replace pattern. |
ByteBuffer |
ByteBuffer.replace(int start,
int end,
byte[] pattern,
byte[] replace)
Removes every instance of the passed in pattern from the ByteBuffer and replaces them with the replace pattern. |
ByteBuffer |
ByteBuffer.replace(byte[][] pattern,
byte[][] replace)
Replaces a sequence of patterns with a sequence of replace values. |
ByteBuffer |
ByteBuffer.replace(int start,
int end,
byte[][] pattern,
byte[][] replace)
Replaces a sequence of patterns with a sequence of replace values. |
ByteBuffer |
ByteBuffer.substring(int start)
Returns a new ByteBuffer that contains a subsequence of
bytes currently contained in this ByteBuffer .The
substring begins at the specified index and extends to the end of the
ByteBuffer . |
ByteBuffer |
ByteBuffer.substring(int start,
int end)
Returns a new ByteBuffer that contains a subsequence of
characters currently contained in this ByteBuffer . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |