Index

A B C D E F G H I L M N O P Q R S T W 
All Classes and Interfaces|All Packages|Constant Field Values

A

add(ByteBuf) - Method in class io.activej.bytebuf.ByteBufs
Adds provided ByteBuf to this ByteBufs.
addAll(Iterable<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
addRef() - Method in class io.activej.bytebuf.ByteBuf
Increases ByteBuf.refs value by 1.
allocate(int) - Static method in class io.activej.bytebuf.ByteBufPool
Allocates byte buffer from the pool with size of ceil(log2(size))2 (rounds up to the nearest power of 2) bytes.
allocate(MemSize) - Static method in class io.activej.bytebuf.ByteBufPool
 
allocateExact(int) - Static method in class io.activej.bytebuf.ByteBufPool
Allocates byte buffer in the same way as ByteBufPool.allocate(int) does, but sets its positions so that write-remaining is equal to requested size.
allocateExact(MemSize) - Static method in class io.activej.bytebuf.ByteBufPool
 
append(char) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
append(ByteBuf, byte[]) - Static method in class io.activej.bytebuf.ByteBufPool
 
append(ByteBuf, byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufPool
Appends byte array to ByteBuf.
append(ByteBuf, ByteBuf) - Static method in class io.activej.bytebuf.ByteBufPool
Appends one ByteBuf to another ByteBuf.
append(CharSequence) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
append(CharSequence, int, int) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
array - Variable in class io.activej.bytebuf.ByteBuf
Stores bytes of this ByteBuf.
array() - Method in class io.activej.bytebuf.ByteBuf
Returns byte array ByteBuf.array.
asArray() - Method in class io.activej.bytebuf.ByteBuf
Returns a byte array from ByteBuf.head to ByteBuf.tail.
asAscii(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
asIterator() - Method in class io.activej.bytebuf.ByteBufs
 
asString(Charset) - Method in class io.activej.bytebuf.ByteBuf
Returns a String created from this ByteBuf using given charset.
asUtf8(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
at(int) - Method in class io.activej.bytebuf.ByteBuf
Returns byte from this ByteBuf which index is equal to the passed value.

B

ByteBuf - Class in io.activej.bytebuf
Represents a wrapper over a byte array and has 2 positions: ByteBuf.head and ByteBuf.tail.
ByteBufPool - Class in io.activej.bytebuf
Represents a pool of ByteBufs with 33 slabs.
ByteBufPool.ByteBufPoolStats - Class in io.activej.bytebuf
Manages stats for this ByteBufPool.
ByteBufPool.ByteBufPoolStatsMXBean - Interface in io.activej.bytebuf
 
ByteBufPool.Entry - Class in io.activej.bytebuf
Stores information about ByteBufs for stats.
ByteBufPoolStats() - Constructor for class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
ByteBufs - Class in io.activej.bytebuf
Represents a circular FIFO queue of ByteBufs optimized for efficient work with multiple ByteBufs.
ByteBufs() - Constructor for class io.activej.bytebuf.ByteBufs
Returns ByteBufs whose capacity is 8.
ByteBufs(int) - Constructor for class io.activej.bytebuf.ByteBufs
 
ByteBufs.ByteBufIterator - Class in io.activej.bytebuf
 
ByteBufs.ByteScanner - Interface in io.activej.bytebuf
 
ByteBufStrings - Class in io.activej.bytebuf
This class contains various fast string utilities for ByteBufs and byte arrays
ByteBufStrings() - Constructor for class io.activej.bytebuf.ByteBufStrings
 
ByteBufWriter - Class in io.activej.bytebuf.util
An implementation of character Writer, that appends characters it received to an allocated ByteBuf.
ByteBufWriter() - Constructor for class io.activej.bytebuf.util.ByteBufWriter
 
ByteBufWriter(MemSize) - Constructor for class io.activej.bytebuf.util.ByteBufWriter
 
ByteBufWriter(MemSize, Charset) - Constructor for class io.activej.bytebuf.util.ByteBufWriter
 
ByteBufWriter(Charset) - Constructor for class io.activej.bytebuf.util.ByteBufWriter
 

C

canRead() - Method in class io.activej.bytebuf.ByteBuf
Checks if there are bytes available for reading if this ByteBuf is not recycled.
canWrite() - Method in class io.activej.bytebuf.ByteBuf
Checks if there are bytes available for writing if this ByteBuf is not recycled.
clear() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
clear() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
clear() - Static method in class io.activej.bytebuf.ByteBufPool
Clears all the slabs and stats.
clearRegistry() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
clearRegistry() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
close() - Method in class io.activej.bytebuf.util.ByteBufWriter
 
collector() - Static method in class io.activej.bytebuf.ByteBufs
Accumulates input ByteBufs into ByteBufs and then transforms accumulated result into another ByteBuf.
collector(int) - Static method in class io.activej.bytebuf.ByteBufs
 
consume(int, byte) - Method in interface io.activej.bytebuf.ByteBufs.ByteScanner
 
consume(int, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
Consumes the first ByteBuf of the queue to the provided consumer if the ByteBuf has at least size bytes available for reading.
consumeBytes(int, ByteBufs.ByteScanner) - Method in class io.activej.bytebuf.ByteBufs
 
consumeBytes(int, ByteBufs.ByteScanner, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
consumeBytes(ByteBufs.ByteScanner) - Method in class io.activej.bytebuf.ByteBufs
 
consumeBytes(ByteBufs.ByteScanner, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
CR - Static variable in class io.activej.bytebuf.ByteBufStrings
 

D

decodeAscii(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeAscii(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeAscii(byte[], int, int, char[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeInt(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeLong(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodePositiveInt(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodePositiveLong(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeUtf8(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeUtf8(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
decodeUtf8(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
drainTo(byte[], int, int) - Method in class io.activej.bytebuf.ByteBuf
Drains bytes from this ByteBuf starting from current ByteBuf.head to a given byte array with specified offset and length.
drainTo(byte[], int, int) - Method in class io.activej.bytebuf.ByteBufs
Adds maxSize bytes from this bufs to dest if queue contains more than maxSize bytes.
drainTo(byte[], int, int, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
drainTo(ByteBuf) - Method in class io.activej.bytebuf.ByteBufs
Adds as many bytes to dest as it can store.
drainTo(ByteBuf, int) - Method in class io.activej.bytebuf.ByteBuf
Drains bytes to a given ByteBuf.
drainTo(ByteBuf, int) - Method in class io.activej.bytebuf.ByteBufs
Adds maxSize bytes from this queue to ByteBuf dest if queue contains more than maxSize bytes.
drainTo(ByteBufs) - Method in class io.activej.bytebuf.ByteBufs
Copies all bytes from this queue to dest, and removes it from this queue.
drainTo(ByteBufs, int) - Method in class io.activej.bytebuf.ByteBufs
Adds to ByteBufs dest maxSize bytes from this queue.

E

empty() - Static method in class io.activej.bytebuf.ByteBuf
Creates an empty ByteBuf with array of size 0, ByteBuf.tail and ByteBuf.head both equal to 0.
encodeAscii(byte[], int, String) - Static method in class io.activej.bytebuf.ByteBufStrings
 
encodeAscii(String) - Static method in class io.activej.bytebuf.ByteBufStrings
 
encodeInt(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
encodeLong(byte[], int, long) - Static method in class io.activej.bytebuf.ByteBufStrings
 
encodePositiveInt(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
encodePositiveLong(byte[], int, long) - Static method in class io.activej.bytebuf.ByteBufStrings
 
encodeUtf8(byte[], int, String) - Static method in class io.activej.bytebuf.ByteBufStrings
 
ensureWriteRemaining(ByteBuf, int) - Static method in class io.activej.bytebuf.ByteBufPool
 
ensureWriteRemaining(ByteBuf, int, int) - Static method in class io.activej.bytebuf.ByteBufPool
Checks if current ByteBuf can accommodate the needed amount of writable bytes.
equalsLowerCaseAscii(byte[], byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
equalsUpperCaseAscii(byte[], byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 

F

find(byte) - Method in class io.activej.bytebuf.ByteBuf
Finds the given value in the ByteBuf.array and returns its position.
find(byte[]) - Method in class io.activej.bytebuf.ByteBuf
Finds the given byte array in the ByteBuf.array and returns its position.
find(byte[], int, int) - Method in class io.activej.bytebuf.ByteBuf
Finds the given byte array in the ByteBuf.array and returns its position.
flush() - Method in class io.activej.bytebuf.util.ByteBufWriter
 

G

get() - Method in class io.activej.bytebuf.ByteBuf
Returns the byte from this ByteBuf which index is equal to ByteBuf.head.
getAge() - Method in class io.activej.bytebuf.ByteBufPool.Entry
 
getArray() - Method in class io.activej.bytebuf.ByteBuf
Returns a byte array from ByteBuf.head to ByteBuf.tail.
getBuf() - Method in class io.activej.bytebuf.util.ByteBufWriter
 
getByte() - Method in class io.activej.bytebuf.ByteBufs
Returns the first byte of the first ByteBuf of this queue and increases ByteBuf.head() of the ByteBuf.
getCreatedItems() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getCreatedItems() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getPoolItems() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getPoolItems() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getPoolItemsString() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getPoolSize() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getPoolSize() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getPoolSizeKB() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getPoolSizeKB() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getPoolSlabs() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getPoolSlabs() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getReusedItems() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getReusedItems() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getSize() - Method in class io.activej.bytebuf.ByteBufPool.Entry
 
getStackTrace() - Method in class io.activej.bytebuf.ByteBufPool.Entry
 
getStats() - Static method in class io.activej.bytebuf.ByteBufPool
 
getString(Charset) - Method in class io.activej.bytebuf.ByteBuf
Returns a String created from this ByteBuf using given charset.
getThread() - Method in class io.activej.bytebuf.ByteBufPool.Entry
 
getTimestamp() - Method in class io.activej.bytebuf.ByteBufPool.Entry
 
getTotalEvicted() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getTotalEvicted() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getTotalSlabMins() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
getTotalSlabMins() - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 
getUnrecycledBufs() - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 

H

hashCode(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCode(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCode(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCodeLowerCaseAscii(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCodeLowerCaseAscii(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCodeLowerCaseAscii(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCodeUpperCaseAscii(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCodeUpperCaseAscii(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hashCodeUpperCaseAscii(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
hasNext() - Method in class io.activej.bytebuf.ByteBufs.ByteBufIterator
 
hasRemaining() - Method in class io.activej.bytebuf.ByteBufs
Checks if this queue is empty.
hasRemainingBytes(int) - Method in class io.activej.bytebuf.ByteBufs
Checks if this queue has at least remaining bytes.
head() - Method in class io.activej.bytebuf.ByteBuf
Returns ByteBuf.head if this ByteBuf is not recycled.
head(int) - Method in class io.activej.bytebuf.ByteBuf
Sets ByteBuf.head if this ByteBuf is not recycled.
HT - Static variable in class io.activej.bytebuf.ByteBufStrings
 

I

INITIAL_BUF_SIZE - Static variable in class io.activej.bytebuf.util.ByteBufWriter
 
io.activej.bytebuf - package io.activej.bytebuf
 
io.activej.bytebuf.util - package io.activej.bytebuf.util
 
isContentEqual(byte[]) - Method in class io.activej.bytebuf.ByteBuf
Checks if provided array is equal to the readable bytes of the ByteBuf.array.
isContentEqual(byte[], int, int) - Method in class io.activej.bytebuf.ByteBuf
Checks if provided array is equal to the readable bytes of the ByteBuf.array.
isContentEqual(ByteBuf) - Method in class io.activej.bytebuf.ByteBuf
Checks if provided ByteBuf readable bytes are equal to the readable bytes of the ByteBuf.array.
isEmpty() - Method in class io.activej.bytebuf.ByteBufs
 
isRecycled() - Method in class io.activej.bytebuf.ByteBuf
Checks if this ByteBuf is recycled.
isRecycled() - Method in class io.activej.bytebuf.ByteBufs.ByteBufIterator
 
isRecycled() - Method in class io.activej.bytebuf.ByteBufs
 
isRecycleNeeded() - Method in class io.activej.bytebuf.ByteBuf
Checks if this ByteBuf needs recycling by checking the value of ByteBuf.refs.

L

LF - Static variable in class io.activej.bytebuf.ByteBufStrings
 
limit() - Method in class io.activej.bytebuf.ByteBuf
Returns length of the ByteBuf.array of this ByteBuf.

M

moveHead(int) - Method in class io.activej.bytebuf.ByteBuf
Sets new value of ByteBuf.head by moving it by the given delta if this ByteBuf is not recycled.
moveTail(int) - Method in class io.activej.bytebuf.ByteBuf
Sets new value of ByteBuf.tail by moving it by the given delta if this ByteBuf is not recycled.

N

next() - Method in class io.activej.bytebuf.ByteBufs.ByteBufIterator
 

O

ofReadByteBuffer(ByteBuffer) - Method in class io.activej.bytebuf.ByteBuf
Unwraps given Java's ByteBuffer into ByteBuf.
ofWriteByteBuffer(ByteBuffer) - Method in class io.activej.bytebuf.ByteBuf
Unwraps given Java's ByteBuffer into ByteBuf.

P

peek() - Method in class io.activej.bytebuf.ByteBuf
Returns a byte from this ByteBuf.array which is located at ByteBuf.head if this ByteBuf is not recycled.
peek(int) - Method in class io.activej.bytebuf.ByteBuf
Returns a byte from this ByteBuf.array which is located at ByteBuf.head position increased by the offset if this ByteBuf is not recycled.
peekBuf() - Method in class io.activej.bytebuf.ByteBufs
Returns the first ByteBuf of this queue if the queue is not empty.
peekBuf(int) - Method in class io.activej.bytebuf.ByteBufs
Returns the ByteBuf of the given index relatively to the first index (head) of the queue.
peekByte() - Method in class io.activej.bytebuf.ByteBufs
Returns the first byte from this bufs without any recycling.
peekByte(int) - Method in class io.activej.bytebuf.ByteBufs
Returns the byte from this bufs of the given index (not necessarily from the first ByteBuf of the bufs).
peekTo(byte[], int, int) - Method in class io.activej.bytebuf.ByteBufs
 
poll() - Method in class io.activej.bytebuf.ByteBufs
Returns the first ByteBuf of the queue if the queue is not empty otherwise returns null.
put(byte) - Method in class io.activej.bytebuf.ByteBuf
Puts given byte to the ByteBuf.array at the ByteBuf.tail and increases the ByteBuf.tail by 1.
put(byte[]) - Method in class io.activej.bytebuf.ByteBuf
Puts given byte array to the ByteBuf.array at the ByteBuf.tail and increases the ByteBuf.tail by the length of the given array.
put(byte[], int, int) - Method in class io.activej.bytebuf.ByteBuf
Puts given byte array to the ByteBuf from the ByteBuf.tail with given offset.
put(ByteBuf) - Method in class io.activej.bytebuf.ByteBuf
Puts given ByteBuf to this ByteBuf from the ByteBuf.tail and increases the ByteBuf.tail by the length of the given ByteBuf.
putAscii(ByteBuf, String) - Static method in class io.activej.bytebuf.ByteBufStrings
 
putInt(ByteBuf, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
putLong(ByteBuf, long) - Static method in class io.activej.bytebuf.ByteBufStrings
 
putPositiveInt(ByteBuf, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
putPositiveLong(ByteBuf, long) - Static method in class io.activej.bytebuf.ByteBufStrings
 
putUtf8(ByteBuf, String) - Static method in class io.activej.bytebuf.ByteBufStrings
 

Q

queryUnrecycledBufs(int) - Method in class io.activej.bytebuf.ByteBufPool.ByteBufPoolStats
 
queryUnrecycledBufs(int) - Method in interface io.activej.bytebuf.ByteBufPool.ByteBufPoolStatsMXBean
 

R

read(byte[]) - Method in class io.activej.bytebuf.ByteBuf
 
read(byte[], int, int) - Method in class io.activej.bytebuf.ByteBuf
 
readBoolean() - Method in class io.activej.bytebuf.ByteBuf
 
readByte() - Method in class io.activej.bytebuf.ByteBuf
 
readChar() - Method in class io.activej.bytebuf.ByteBuf
 
readDouble() - Method in class io.activej.bytebuf.ByteBuf
 
readFloat() - Method in class io.activej.bytebuf.ByteBuf
 
readInt() - Method in class io.activej.bytebuf.ByteBuf
 
readLong() - Method in class io.activej.bytebuf.ByteBuf
 
readRemaining() - Method in class io.activej.bytebuf.ByteBuf
Returns the amount of bytes which are available for reading if this ByteBuf is not recycled.
readShort() - Method in class io.activej.bytebuf.ByteBuf
 
readVarInt() - Method in class io.activej.bytebuf.ByteBuf
 
readVarLong() - Method in class io.activej.bytebuf.ByteBuf
 
recycle() - Method in class io.activej.bytebuf.ByteBuf
Recycles this ByteBuf by returning it to ByteBufPool.
recycle() - Method in class io.activej.bytebuf.ByteBufs
Recycles all present ByteBufs and sets first and last indexes to 0.
remainingBufs() - Method in class io.activej.bytebuf.ByteBufs
Returns the number of ByteBufs in this queue.
remainingBytes() - Method in class io.activej.bytebuf.ByteBufs
Returns the number of bytes in this queue.
rewind() - Method in class io.activej.bytebuf.ByteBuf
Sets ByteBuf.tail and ByteBuf.head of this ByteBuf to 0.

S

scanBytes(int, ByteBufs.ByteScanner) - Method in class io.activej.bytebuf.ByteBufs
 
scanBytes(ByteBufs.ByteScanner) - Method in class io.activej.bytebuf.ByteBufs
 
set(int, byte) - Method in class io.activej.bytebuf.ByteBuf
Sets given byte at particular position of the ByteBuf.array if this ByteBuf is not recycled.
setByte(int, byte) - Method in class io.activej.bytebuf.ByteBufs
 
skip(int) - Method in class io.activej.bytebuf.ByteBufs
Removes maxSize bytes from this bufs.
skip(int, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
slice() - Method in class io.activej.bytebuf.ByteBuf
Creates a slice of this ByteBuf if it is not recycled.
slice(int) - Method in class io.activej.bytebuf.ByteBuf
Creates a slice of this ByteBuf with the given length if it is not recycled.
slice(int, int) - Method in class io.activej.bytebuf.ByteBuf
Creates a slice of this ByteBuf with the given offset and length.
SP - Static variable in class io.activej.bytebuf.ByteBufStrings
 

T

tail() - Method in class io.activej.bytebuf.ByteBuf
Returns ByteBuf.tail if this ByteBuf is not recycled.
tail(int) - Method in class io.activej.bytebuf.ByteBuf
Sets ByteBuf.tail if this ByteBuf is not recycled.
take() - Method in class io.activej.bytebuf.ByteBufs
Returns the first ByteBuf of the queue if the queue is not empty.
takeAtLeast(int) - Method in class io.activej.bytebuf.ByteBufs
Creates and returns a ByteBuf which contains at least size bytes from queue's first ByteBuf if the latter contains enough bytes.
takeAtLeast(int, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
takeAtMost(int) - Method in class io.activej.bytebuf.ByteBufs
Creates and returns a ByteBuf.ByteBufSlice which contains size bytes from queue's first ByteBuf if the latter contains too many bytes.
takeExactSize(int) - Method in class io.activej.bytebuf.ByteBufs
Creates and returns a ByteBuf which contains all bytes from the queue's first ByteBuf if the latter contains exactSize of bytes.
takeExactSize(int, Consumer<ByteBuf>) - Method in class io.activej.bytebuf.ByteBufs
 
takeRemaining() - Method in class io.activej.bytebuf.ByteBufs
Creates and returns a ByteBuf with all remaining bytes of the queue.
toLowerCaseAscii(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
toLowerCaseAscii(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
toLowerCaseAscii(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
toReadByteBuffer() - Method in class io.activej.bytebuf.ByteBuf
Wraps this ByteBuf into Java's ByteBuffer ready to read.
toString() - Method in class io.activej.bytebuf.ByteBuf
 
toString() - Method in class io.activej.bytebuf.ByteBufPool.Entry
 
toString() - Method in class io.activej.bytebuf.ByteBufs
 
toUpperCaseAscii(byte[]) - Static method in class io.activej.bytebuf.ByteBufStrings
 
toUpperCaseAscii(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
toUpperCaseAscii(ByteBuf) - Static method in class io.activej.bytebuf.ByteBufStrings
 
toWriteByteBuffer() - Method in class io.activej.bytebuf.ByteBuf
Wraps this ByteBuf into Java's ByteBuffer ready to write.

W

wrap(byte[], int, int) - Static method in class io.activej.bytebuf.ByteBuf
Wraps provided byte array into ByteBuf with specified ByteBuf.tail and ByteBuf.head.
wrapAscii(String) - Static method in class io.activej.bytebuf.ByteBufStrings
 
wrapForReading(byte[]) - Static method in class io.activej.bytebuf.ByteBuf
Wraps provided byte array into ByteBuf with ByteBuf.tail equal to length of provided array.
wrapForWriting(byte[]) - Static method in class io.activej.bytebuf.ByteBuf
Wraps provided byte array into ByteBuf with ByteBuf.tail equal to 0.
wrapInt(int) - Static method in class io.activej.bytebuf.ByteBufStrings
 
wrapLong(long) - Static method in class io.activej.bytebuf.ByteBufStrings
 
wrapUtf8(String) - Static method in class io.activej.bytebuf.ByteBufStrings
 
write(byte[]) - Method in class io.activej.bytebuf.ByteBuf
 
write(byte[], int, int) - Method in class io.activej.bytebuf.ByteBuf
 
write(char[]) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
write(char[], int, int) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
write(int) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
write(String) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
write(String, int, int) - Method in class io.activej.bytebuf.util.ByteBufWriter
 
writeBoolean(boolean) - Method in class io.activej.bytebuf.ByteBuf
 
writeByte(byte) - Method in class io.activej.bytebuf.ByteBuf
 
writeChar(char) - Method in class io.activej.bytebuf.ByteBuf
 
writeDouble(double) - Method in class io.activej.bytebuf.ByteBuf
 
writeFloat(float) - Method in class io.activej.bytebuf.ByteBuf
 
writeInt(int) - Method in class io.activej.bytebuf.ByteBuf
 
writeLong(long) - Method in class io.activej.bytebuf.ByteBuf
 
writeRemaining() - Method in class io.activej.bytebuf.ByteBuf
Returns the amount of bytes which are available for writing if this ByteBuf is not recycled.
writeShort(short) - Method in class io.activej.bytebuf.ByteBuf
 
writeVarInt(int) - Method in class io.activej.bytebuf.ByteBuf
 
writeVarLong(long) - Method in class io.activej.bytebuf.ByteBuf
 
A B C D E F G H I L M N O P Q R S T W 
All Classes and Interfaces|All Packages|Constant Field Values