- position() - Method in class net.magik6k.bitbuffer.BitBuffer
-
This function returns current position of cursor, in bits
- put(boolean) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(byte) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(long) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(byte, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(long, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(String) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(String, Charset) - Method in class net.magik6k.bitbuffer.BitBuffer
-
- put(BitBuffer) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads entire given BitBuffer into this buffer
- put(ByteBuffer) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads entire given ByteBuffer into this buffer
- put(boolean[], int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of booleans into this buffer
- put(boolean[]) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(byte[], int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of bytes into this buffer
- put(byte[]) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(int[], int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of integers into this buffer
- put(int[]) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(long[], int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of longs into this buffer
- put(long[]) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(byte[], int, int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of bytes into this buffer
- put(byte[], int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(int[], int, int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of integers into this buffer
- put(int[], int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(long[], int, int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Reads given array of longs into this buffer
- put(long[], int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts whole given array into this buffer
- put(IBufferInsert) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Inserts given data into buffer
- putBit(boolean) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts single bit(boolean value) to this buffer
- putBoolean(boolean) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts boolean value(Single bit)
- putByte(byte) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts signed byte value(8 bits)
- putByte(byte, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts byte value with specified bit count.
- putDouble(double) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts double floating point value(64 bits)
- putFloat(float) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts floating point value(32 bits)
- putInt(int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts signed integer value(32 bits)
- putInt(int, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts integer value with specified bit count.
- putLong(long) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts signed long value(64 bits)
- putLong(long, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts long value with specified bit count.
- putString(String) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts String value(8 bits per char), using UTF-8 encoding
- putString(String, Charset) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts String value
- putString(String, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts String value(specified amount bits per char), using ASCII encoding
- putString(String, Charset, int) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts String value(specified amount of bits per byte), using specified encoding.
- putToByteBuffer(ByteBuffer) - Method in class net.magik6k.bitbuffer.BitBuffer
-
Puts this BitBuffer into ByteBuffer