A B C D E F G H I L N O P R S T V W X 
All Classes All Packages

A

allocate(int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Allocates a new ByteBuffer with the specified capacity.
allocate(int, ByteOrder) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Allocates a new ByteBuffer with the specified capacity.
and(BufferBitSet) - Method in class tech.bitey.bufferstuff.BufferBitSet
Performs a logical AND of this target bitset with the argument bitset.
andNot(BufferBitSet) - Method in class tech.bitey.bufferstuff.BufferBitSet
Clears all of the bits in this bitset whose corresponding bit is set in the specified bitset.
asReadOnlyBuffer(ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Creates a new, read-only byte buffer that shares the specified buffer's content, and preserves it's order.

B

binaryFindFirst(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified ByteBuffer for the first occurrence of the value at the given keyIndex.
binaryFindFirst(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified DoubleBuffer for the first occurrence of the value at the given keyIndex.
binaryFindFirst(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified FloatBuffer for the first occurrence of the value at the given keyIndex.
binaryFindFirst(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified IntBuffer for the first occurrence of the value at the given keyIndex.
binaryFindFirst(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified LongBuffer for the first occurrence of the value at the given keyIndex.
binaryFindFirst(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified ShortBuffer for the first occurrence of the value at the given keyIndex.
binaryFindLast(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified ByteBuffer for the last occurrence of the value at the given keyIndex.
binaryFindLast(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified DoubleBuffer for the last occurrence of the value at the given keyIndex.
binaryFindLast(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified FloatBuffer for the last occurrence of the value at the given keyIndex.
binaryFindLast(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified IntBuffer for the last occurrence of the value at the given keyIndex.
binaryFindLast(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified LongBuffer for the last occurrence of the value at the given keyIndex.
binaryFindLast(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified ShortBuffer for the last occurrence of the value at the given keyIndex.
binarySearch(ByteBuffer, int, int, byte) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified ByteBuffer for the specified value using the binary search algorithm.
binarySearch(DoubleBuffer, int, int, double) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified DoubleBuffer for the specified value using the binary search algorithm.
binarySearch(FloatBuffer, int, int, float) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified FloatBuffer for the specified value using the binary search algorithm.
binarySearch(IntBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified IntBuffer for the specified value using the binary search algorithm.
binarySearch(LongBuffer, int, int, long) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified LongBuffer for the specified value using the binary search algorithm.
binarySearch(ShortBuffer, int, int, short) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Searches a range of the specified ShortBuffer for the specified value using the binary search algorithm.
BufferBitSet - Class in tech.bitey.bufferstuff
Similar to BitSet, but backed by a ByteBuffer.
BufferBitSet() - Constructor for class tech.bitey.bufferstuff.BufferBitSet
Creates an empty, resizable BufferBitSet
BufferBitSet(boolean) - Constructor for class tech.bitey.bufferstuff.BufferBitSet
Creates an empty BufferBitSet with the specified resize behavior.
BufferBitSet(ByteBuffer) - Constructor for class tech.bitey.bufferstuff.BufferBitSet
Creates a BufferBitSet which wraps the provided buffer.
BufferBitSet(ByteBuffer, boolean) - Constructor for class tech.bitey.bufferstuff.BufferBitSet
Creates a BufferBitSet which wraps the provided buffer.
BufferSearch - Enum in tech.bitey.bufferstuff
Provides the primitive array binary search implementations from java.util.Arrays, modified with minimal changes to support nio buffers.
BufferSort - Class in tech.bitey.bufferstuff
Sorting algorithms for nio buffers.
BufferSort() - Constructor for class tech.bitey.bufferstuff.BufferSort
 
BufferSpliterators - Class in tech.bitey.bufferstuff
 
BufferSpliterators() - Constructor for class tech.bitey.bufferstuff.BufferSpliterators
 
BufferSpliterators.DoubleBufferSpliterator - Class in tech.bitey.bufferstuff
A Spliterator.OfDouble designed for use by sources that traverse and split elements maintained in an unmodifiable DoubleBuffer.
BufferSpliterators.IntBufferSpliterator - Class in tech.bitey.bufferstuff
A Spliterator.OfInt designed for use by sources that traverse and split elements maintained in an unmodifiable IntBuffer.
BufferSpliterators.LongBufferSpliterator - Class in tech.bitey.bufferstuff
A Spliterator.OfLong designed for use by sources that traverse and split elements maintained in an unmodifiable LongBuffer.
BufferUtils - Enum in tech.bitey.bufferstuff
Utility methods for working with nio buffers.

C

cardinality() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the number of bits set to true in this BufferBitSet.
cardinality(int, int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the number of bits set to true within the given range.
characteristics() - Method in class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
 
characteristics() - Method in class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
 
characteristics() - Method in class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
 
clear(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bit specified by the index to false.
clear(int, int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to false.
clone() - Method in class tech.bitey.bufferstuff.BufferBitSet
Cloning this bitset produces a new bitset that is equal to it.
copy() - Method in class tech.bitey.bufferstuff.BufferBitSet
Identical to BufferBitSet.clone(), except returns a BufferBitSet instead of Object.
copy(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a copy of a range from the specified buffer.
copy(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a copy of a range from the specified buffer.
copy(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a copy of a range from the specified buffer.
copy(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a copy of a range from the specified buffer.
copy(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a copy of a range from the specified buffer.
copy(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a copy of a range from the specified buffer.
countingSort(ByteBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ByteBuffer in ascending order (lowest first).
countingSort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ShortBuffer in ascending order (lowest first).

D

deduplicate(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Deduplicates a range of the specified ByteBuffer.
deduplicate(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Deduplicates a range of the specified DoubleBuffer.
deduplicate(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Deduplicates a range of the specified FloatBuffer.
deduplicate(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Deduplicates a range of the specified IntBuffer.
deduplicate(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Deduplicates a range of the specified LongBuffer.
deduplicate(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Deduplicates a range of the specified ShortBuffer.
DoubleBufferSpliterator(DoubleBuffer, int) - Constructor for class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
Creates a spliterator covering all of the given DoubleBuffer.
DoubleBufferSpliterator(DoubleBuffer, int, int, int) - Constructor for class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
Creates a spliterator covering the given DoubleBuffer and range.
duplicate(ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Duplicate a ByteBuffer and preserve the order.

E

EMPTY_BITSET - Static variable in class tech.bitey.bufferstuff.BufferBitSet
An empty, non-resizable BufferBitSet
EMPTY_BUFFER - Static variable in enum tech.bitey.bufferstuff.BufferUtils
An empty, read-only ByteBuffer which has native order
equals(Object) - Method in class tech.bitey.bufferstuff.BufferBitSet
Compares this object against the specified object.
estimateSize() - Method in class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
 
estimateSize() - Method in class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
 
estimateSize() - Method in class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
 

F

flip(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bit at the specified index to the complement of its current value.
flip(int, int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets each bit from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to the complement of its current value.
forEachRemaining(DoubleConsumer) - Method in class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
 
forEachRemaining(IntConsumer) - Method in class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
 
forEachRemaining(LongConsumer) - Method in class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
 

G

get(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the value of the bit with the specified index.
get(int, int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new BufferBitSet composed of bits from this bitset from fromIndex (inclusive) to toIndex (exclusive).
getBuffer() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the ByteBuffer backing this BufferBitSet.
getComparator() - Method in class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
 
getComparator() - Method in class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
 
getComparator() - Method in class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
 

H

hashCode() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the hashcode value for this bitset.
heapSort(ByteBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ByteBuffer in ascending order (lowest first).
heapSort(DoubleBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified DoubleBuffer in ascending order (lowest first).
heapSort(FloatBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified FloatBuffer in ascending order (lowest first).
heapSort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified IntBuffer in ascending order (lowest first).
heapSort(IntBuffer, IntBinaryOperator, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified IntBuffer in ascending order (lowest first).
heapSort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified LongBuffer in ascending order (lowest first).
heapSort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ShortBuffer in ascending order (lowest first).

I

insertionSort(ByteBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ByteBuffer in ascending order (lowest first).
insertionSort(DoubleBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified DoubleBuffer in ascending order (lowest first).
insertionSort(FloatBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified FloatBuffer in ascending order (lowest first).
insertionSort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified IntBuffer in ascending order (lowest first).
insertionSort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified LongBuffer in ascending order (lowest first).
insertionSort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ShortBuffer in ascending order (lowest first).
IntBufferSpliterator(IntBuffer, int) - Constructor for class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
Creates a spliterator covering all of the given IntBuffer.
IntBufferSpliterator(IntBuffer, int, int, int) - Constructor for class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
Creates a spliterator covering the given IntBuffer and range.
isEmpty() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns true if this BufferBitSet contains no bits that are set to true.
isResizable() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns true if this bitset's buffer can be resized (replaced with a larger buffer).
isSorted(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted inside the specified range.
isSorted(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted inside the specified range.
isSorted(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted inside the specified range.
isSorted(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted inside the specified range.
isSorted(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted inside the specified range.
isSorted(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted inside the specified range.
isSortedAndDistinct(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted and distinct inside the specified range.
isSortedAndDistinct(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted and distinct inside the specified range.
isSortedAndDistinct(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted and distinct inside the specified range.
isSortedAndDistinct(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted and distinct inside the specified range.
isSortedAndDistinct(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted and distinct inside the specified range.
isSortedAndDistinct(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Determines if the specified buffer is sorted and distinct inside the specified range.

L

lastSetBit() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the index of the highest set bit in the bitset, or -1 if the bitset contains no set bits.
LongBufferSpliterator(LongBuffer, int) - Constructor for class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
Creates a spliterator covering all of the given LongBuffer.
LongBufferSpliterator(LongBuffer, int, int, int) - Constructor for class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
Creates a spliterator covering the given LongBuffer and range.

N

nextClearBit(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the index of the first bit that is set to false that occurs on or after the specified starting index.
nextSetBit(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the index of the first bit that is set to true that occurs on or after the specified starting index.

O

or(BufferBitSet) - Method in class tech.bitey.bufferstuff.BufferBitSet
Performs a logical OR of this bitset with the bitset argument.

P

previousClearBit(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the index of the nearest bit that is set to false that occurs on or before the specified starting index.
previousSetBit(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the index of the nearest bit that is set to true that occurs on or before the specified starting index.

R

radixSort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified IntBuffer in ascending order (lowest first).
radixSort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified LongBuffer in ascending order (lowest first).
random(int, int) - Static method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new BufferBitSet with n bits set randomly in the range zero to size (exclusive).
random(int, int, Random) - Static method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new BufferBitSet with n bits set randomly in the range zero to size (exclusive).
readFrom(ReadableByteChannel) - Static method in class tech.bitey.bufferstuff.BufferBitSet
Read a bitset from the specified ReadableByteChannel.
readFully(ReadableByteChannel, ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Reads bytes from the given channel until the given buffer is full (remaining is 0).
resizable(boolean) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new BufferBitSet with the specified resizability.

S

set(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bit at the specified index to true.
set(int, boolean) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bit at the specified index to the specified value.
set(int, int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to true.
set(int, int, boolean) - Method in class tech.bitey.bufferstuff.BufferBitSet
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to the specified value.
shiftRight(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns a copy of this bitset with each bit shifted right by offset.
size() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns the number of bits of space actually in use by this BufferBitSet to represent bit values.
slice(ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Slice a ByteBuffer and preserve the order.
slice(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Slice a range from the specified ByteBuffer.
sort(ByteBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ByteBuffer in ascending order (lowest first).
sort(DoubleBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified DoubleBuffer in ascending order (lowest first).
sort(FloatBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified FloatBuffer in ascending order (lowest first).
sort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified IntBuffer in ascending order (lowest first).
sort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified LongBuffer in ascending order (lowest first).
sort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
Sorts a range of the specified ShortBuffer in ascending order (lowest first).
stream(DoubleBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a sequential DoubleStream with the specified buffer as its source.
stream(DoubleBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a sequential DoubleStream with the specified range of the specified buffer as its source.
stream(IntBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a sequential IntStream with the specified buffer as its source.
stream(IntBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a sequential IntStream with the specified range of the specified buffer as its source.
stream(LongBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a sequential LongStream with the specified buffer as its source.
stream(LongBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns a sequential LongStream with the specified range of the specified buffer as its source.

T

tech.bitey.bufferstuff - package tech.bitey.bufferstuff
 
toBitSet() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new BitSet containing all of the bits in this BufferBitSet.
toByteArray() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new byte array containing all the bits in this bit set.
toString() - Method in class tech.bitey.bufferstuff.BufferBitSet
Returns a string representation of this BufferBitSet equivalent to the representation of a SortedSet containing the indices of the bits which are set in this bitset.
tryAdvance(DoubleConsumer) - Method in class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
 
tryAdvance(IntConsumer) - Method in class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
 
tryAdvance(LongConsumer) - Method in class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
 
trySplit() - Method in class tech.bitey.bufferstuff.BufferSpliterators.DoubleBufferSpliterator
 
trySplit() - Method in class tech.bitey.bufferstuff.BufferSpliterators.IntBufferSpliterator
 
trySplit() - Method in class tech.bitey.bufferstuff.BufferSpliterators.LongBufferSpliterator
 

V

valueOf(byte[]) - Static method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new resizable bitset containing all of the bits in the given byte array.
valueOf(String) - Static method in enum tech.bitey.bufferstuff.BufferSearch
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns the enum constant of this type with the specified name.
valueOf(BitSet) - Static method in class tech.bitey.bufferstuff.BufferBitSet
Returns a new resizable BufferBitSet containing all of the bits in the given BitSet.
values() - Static method in enum tech.bitey.bufferstuff.BufferSearch
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum tech.bitey.bufferstuff.BufferUtils
Returns an array containing the constants of this enum type, in the order they are declared.

W

writeFully(WritableByteChannel, ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
Writes all remaining bytes from the given buffer into the given channel.
writeTo(WritableByteChannel) - Method in class tech.bitey.bufferstuff.BufferBitSet
Write this bitset to the specified WritableByteChannel.
writeTo(WritableByteChannel, int, int) - Method in class tech.bitey.bufferstuff.BufferBitSet
Write a range from this bitset to the specified WritableByteChannel.

X

xor(BufferBitSet) - Method in class tech.bitey.bufferstuff.BufferBitSet
Performs a logical XOR of this bitset with the bitset argument.
A B C D E F G H I L N O P R S T V W X 
All Classes All Packages