C# Class net.sf.jni4net.nio.ByteBufferN

Inheritance: BufferN
Exibir arquivo Open project: Mazrick/jni4net Class Usage Examples

Public Methods

Method Description
allocate ( int capacity ) : ByteBufferN
allocateDirect ( int capacity ) : ByteBufferN
array ( ) : byte[]
arrayOffset ( ) : int
asCharBuffer ( ) : BufferN
asDoubleBuffer ( ) : BufferN
asFloatBuffer ( ) : BufferN
asIntBuffer ( ) : BufferN
asLongBuffer ( ) : BufferN
asReadOnlyBuffer ( ) : ByteBufferN
asShortBuffer ( ) : BufferN
compact ( ) : ByteBufferN
compareTo ( ByteBufferN that ) : int
duplicate ( ) : ByteBufferN
equals ( object ob ) : bool
get ( byte dst ) : ByteBufferN
get ( byte dst, int offset, int length ) : ByteBufferN
get ( ) : byte
get ( int index ) : byte
getChar ( ) : char
getChar ( int index ) : char
getDouble ( ) : double
getDouble ( int index ) : double
getFloat ( ) : float
getFloat ( int index ) : float
getInt ( ) : int
getInt ( int index ) : int
getLong ( ) : long
getLong ( int index ) : long
getShort ( ) : short
getShort ( int index ) : short
hasArray ( ) : bool
hashCode ( ) : int
isDirect ( ) : bool
order ( ByteOrder bo ) : ByteBufferN
order ( ) : ByteOrder
put ( ByteBufferN src ) : ByteBufferN
put ( byte b ) : ByteBufferN
put ( byte src, int offset, int length ) : ByteBufferN
put ( int index, byte b ) : ByteBufferN
putChar ( char value ) : ByteBufferN
putChar ( int index, char value ) : ByteBufferN
putDouble ( double value ) : ByteBufferN
putDouble ( int index, double value ) : ByteBufferN
putFloat ( float value ) : ByteBufferN
putFloat ( int index, float value ) : ByteBufferN
putInt ( int value ) : ByteBufferN
putInt ( int index, int value ) : ByteBufferN
putLong ( int index, long value ) : ByteBufferN
putLong ( long value ) : ByteBufferN
putShort ( int index, short value ) : ByteBufferN
putShort ( short value ) : ByteBufferN
slice ( ) : ByteBufferN
toString ( ) : String
wrap ( byte array ) : ByteBufferN
wrap ( byte array, int offset, int length ) : ByteBufferN

Private Methods

Method Description
ByteBufferN ( int mark, int pos, int lim, int cap ) : System
ByteBufferN ( int mark, int pos, int lim, int cap, byte hb, int offset ) : System
_get ( int i ) : byte
_put ( int i, byte b ) : void

Method Details

allocate() public static method

public static allocate ( int capacity ) : ByteBufferN
capacity int
return ByteBufferN

allocateDirect() public static method

public static allocateDirect ( int capacity ) : ByteBufferN
capacity int
return ByteBufferN

array() public method

public array ( ) : byte[]
return byte[]

arrayOffset() public method

public arrayOffset ( ) : int
return int

asCharBuffer() public abstract method

public abstract asCharBuffer ( ) : BufferN
return BufferN

asDoubleBuffer() public abstract method

public abstract asDoubleBuffer ( ) : BufferN
return BufferN

asFloatBuffer() public abstract method

public abstract asFloatBuffer ( ) : BufferN
return BufferN

asIntBuffer() public abstract method

public abstract asIntBuffer ( ) : BufferN
return BufferN

asLongBuffer() public abstract method

public abstract asLongBuffer ( ) : BufferN
return BufferN

asReadOnlyBuffer() public abstract method

public abstract asReadOnlyBuffer ( ) : ByteBufferN
return ByteBufferN

asShortBuffer() public abstract method

public abstract asShortBuffer ( ) : BufferN
return BufferN

compact() public abstract method

public abstract compact ( ) : ByteBufferN
return ByteBufferN

compareTo() public method

public compareTo ( ByteBufferN that ) : int
that ByteBufferN
return int

duplicate() public abstract method

public abstract duplicate ( ) : ByteBufferN
return ByteBufferN

equals() public method

public equals ( object ob ) : bool
ob object
return bool

get() public method

public get ( byte dst ) : ByteBufferN
dst byte
return ByteBufferN

get() public method

public get ( byte dst, int offset, int length ) : ByteBufferN
dst byte
offset int
length int
return ByteBufferN

get() public abstract method

public abstract get ( ) : byte
return byte

get() public abstract method

public abstract get ( int index ) : byte
index int
return byte

getChar() public abstract method

public abstract getChar ( ) : char
return char

getChar() public abstract method

public abstract getChar ( int index ) : char
index int
return char

getDouble() public abstract method

public abstract getDouble ( ) : double
return double

getDouble() public abstract method

public abstract getDouble ( int index ) : double
index int
return double

getFloat() public abstract method

public abstract getFloat ( ) : float
return float

getFloat() public abstract method

public abstract getFloat ( int index ) : float
index int
return float

getInt() public abstract method

public abstract getInt ( ) : int
return int

getInt() public abstract method

public abstract getInt ( int index ) : int
index int
return int

getLong() public abstract method

public abstract getLong ( ) : long
return long

getLong() public abstract method

public abstract getLong ( int index ) : long
index int
return long

getShort() public abstract method

public abstract getShort ( ) : short
return short

getShort() public abstract method

public abstract getShort ( int index ) : short
index int
return short

hasArray() public method

public hasArray ( ) : bool
return bool

hashCode() public method

public hashCode ( ) : int
return int

isDirect() public abstract method

public abstract isDirect ( ) : bool
return bool

order() public method

public order ( ByteOrder bo ) : ByteBufferN
bo java.nio.ByteOrder
return ByteBufferN

order() public method

public order ( ) : ByteOrder
return java.nio.ByteOrder

put() public method

public put ( ByteBufferN src ) : ByteBufferN
src ByteBufferN
return ByteBufferN

put() public abstract method

public abstract put ( byte b ) : ByteBufferN
b byte
return ByteBufferN

put() public method

public put ( byte src, int offset, int length ) : ByteBufferN
src byte
offset int
length int
return ByteBufferN

put() public abstract method

public abstract put ( int index, byte b ) : ByteBufferN
index int
b byte
return ByteBufferN

putChar() public abstract method

public abstract putChar ( char value ) : ByteBufferN
value char
return ByteBufferN

putChar() public abstract method

public abstract putChar ( int index, char value ) : ByteBufferN
index int
value char
return ByteBufferN

putDouble() public abstract method

public abstract putDouble ( double value ) : ByteBufferN
value double
return ByteBufferN

putDouble() public abstract method

public abstract putDouble ( int index, double value ) : ByteBufferN
index int
value double
return ByteBufferN

putFloat() public abstract method

public abstract putFloat ( float value ) : ByteBufferN
value float
return ByteBufferN

putFloat() public abstract method

public abstract putFloat ( int index, float value ) : ByteBufferN
index int
value float
return ByteBufferN

putInt() public abstract method

public abstract putInt ( int value ) : ByteBufferN
value int
return ByteBufferN

putInt() public abstract method

public abstract putInt ( int index, int value ) : ByteBufferN
index int
value int
return ByteBufferN

putLong() public abstract method

public abstract putLong ( int index, long value ) : ByteBufferN
index int
value long
return ByteBufferN

putLong() public abstract method

public abstract putLong ( long value ) : ByteBufferN
value long
return ByteBufferN

putShort() public abstract method

public abstract putShort ( int index, short value ) : ByteBufferN
index int
value short
return ByteBufferN

putShort() public abstract method

public abstract putShort ( short value ) : ByteBufferN
value short
return ByteBufferN

slice() public abstract method

public abstract slice ( ) : ByteBufferN
return ByteBufferN

toString() public method

public toString ( ) : String
return java.lang.String

wrap() public static method

public static wrap ( byte array ) : ByteBufferN
array byte
return ByteBufferN

wrap() public static method

public static wrap ( byte array, int offset, int length ) : ByteBufferN
array byte
offset int
length int
return ByteBufferN