Method |
Description |
|
Allocate ( int size ) : ByteBuffer |
|
|
AllocateDirect ( int size ) : ByteBuffer |
|
|
Array ( ) : byte[] |
|
|
ArrayOffset ( ) : int |
|
|
AsIntBuffer ( ) : IntBuffer |
|
|
AsLongBuffer ( ) : LongBuffer |
|
|
AsShortBuffer ( ) : ShortBuffer |
|
|
ByteBuffer ( ) : System |
|
|
Capacity ( ) : int |
|
|
Clear ( ) : void |
|
|
Duplicate ( ) : ByteBuffer |
|
|
Flip ( ) : void |
|
|
Get ( ) : byte |
|
|
Get ( int i ) : byte |
|
|
Get ( byte data ) : void |
|
|
Get ( byte data, int start, int len ) : void |
|
|
GetInt ( ) : int |
|
|
GetShort ( ) : short |
|
|
HasArray ( ) : bool |
|
|
Limit ( ) : int |
|
|
Limit ( int newLimit ) : void |
|
|
Mark ( ) : void |
|
|
NativeOrder ( ) : ByteOrder |
|
|
Order ( ByteOrder order ) : void |
|
|
Position ( ) : int |
|
|
Position ( int pos ) : void |
|
|
Put ( ByteBuffer buf ) : void |
|
|
Put ( byte data ) : void |
|
|
Put ( byte data, int start, int len ) : void |
|
|
PutChar ( char ch ) : void |
|
|
PutInt ( int i ) : void |
|
|
PutLong ( long i ) : void |
|
|
PutShort ( short i ) : void |
|
|
Remaining ( ) : int |
|
|
Reset ( ) : void |
|
|
Slice ( ) : ByteBuffer |
|
|
Wrap ( byte buf ) : ByteBuffer |
|
|
Wrap ( byte buf, int start, int len ) : ByteBuffer |
|
|