A B C D E F G H I L N O P R S T V W X
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- allocate(int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Allocates a new
ByteBufferwith the specified capacity. - allocate(int, ByteOrder) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Allocates a new
ByteBufferwith 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
ByteBufferfor the first occurrence of the value at the givenkeyIndex. - binaryFindFirst(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
DoubleBufferfor the first occurrence of the value at the givenkeyIndex. - binaryFindFirst(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
FloatBufferfor the first occurrence of the value at the givenkeyIndex. - binaryFindFirst(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
IntBufferfor the first occurrence of the value at the givenkeyIndex. - binaryFindFirst(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
LongBufferfor the first occurrence of the value at the givenkeyIndex. - binaryFindFirst(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
ShortBufferfor the first occurrence of the value at the givenkeyIndex. - binaryFindLast(ByteBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
ByteBufferfor the last occurrence of the value at the givenkeyIndex. - binaryFindLast(DoubleBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
DoubleBufferfor the last occurrence of the value at the givenkeyIndex. - binaryFindLast(FloatBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
FloatBufferfor the last occurrence of the value at the givenkeyIndex. - binaryFindLast(IntBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
IntBufferfor the last occurrence of the value at the givenkeyIndex. - binaryFindLast(LongBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
LongBufferfor the last occurrence of the value at the givenkeyIndex. - binaryFindLast(ShortBuffer, int, int) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
ShortBufferfor the last occurrence of the value at the givenkeyIndex. - binarySearch(ByteBuffer, int, int, byte) - Static method in enum tech.bitey.bufferstuff.BufferSearch
-
Searches a range of the specified
ByteBufferfor 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
DoubleBufferfor 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
FloatBufferfor 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
IntBufferfor 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
LongBufferfor 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
ShortBufferfor the specified value using the binary search algorithm. - BufferBitSet - Class in tech.bitey.bufferstuff
-
Similar to
BitSet, but backed by aByteBuffer. - 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
BufferBitSetwith the specified resize behavior. - BufferBitSet(ByteBuffer) - Constructor for class tech.bitey.bufferstuff.BufferBitSet
-
Creates a
BufferBitSetwhich wraps the provided buffer. - BufferBitSet(ByteBuffer, boolean) - Constructor for class tech.bitey.bufferstuff.BufferBitSet
-
Creates a
BufferBitSetwhich 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
truein thisBufferBitSet. - 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 specifiedtoIndex(exclusive) tofalse. - 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
- 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
ByteBufferin ascending order (lowest first). - countingSort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
ShortBufferin 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
DoubleBufferand range. - duplicate(ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Duplicate a
ByteBufferand 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
ByteBufferwhich hasnative 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 specifiedtoIndex(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
BufferBitSetcomposed of bits from this bitset fromfromIndex(inclusive) totoIndex(exclusive). - getBuffer() - Method in class tech.bitey.bufferstuff.BufferBitSet
-
Returns the
ByteBufferbacking thisBufferBitSet. - 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
ByteBufferin ascending order (lowest first). - heapSort(DoubleBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
DoubleBufferin ascending order (lowest first). - heapSort(FloatBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
FloatBufferin ascending order (lowest first). - heapSort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
IntBufferin ascending order (lowest first). - heapSort(IntBuffer, IntBinaryOperator, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
IntBufferin ascending order (lowest first). - heapSort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
LongBufferin ascending order (lowest first). - heapSort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
ShortBufferin ascending order (lowest first).
I
- insertionSort(ByteBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
ByteBufferin ascending order (lowest first). - insertionSort(DoubleBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
DoubleBufferin ascending order (lowest first). - insertionSort(FloatBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
FloatBufferin ascending order (lowest first). - insertionSort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
IntBufferin ascending order (lowest first). - insertionSort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
LongBufferin ascending order (lowest first). - insertionSort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
ShortBufferin 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
IntBufferand range. - isEmpty() - Method in class tech.bitey.bufferstuff.BufferBitSet
-
Returns true if this
BufferBitSetcontains no bits that are set totrue. - 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
LongBufferand range.
N
- nextClearBit(int) - Method in class tech.bitey.bufferstuff.BufferBitSet
-
Returns the index of the first bit that is set to
falsethat 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
truethat 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
falsethat 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
truethat 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
IntBufferin ascending order (lowest first). - radixSort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
LongBufferin ascending order (lowest first). - random(int, int) - Static method in class tech.bitey.bufferstuff.BufferBitSet
- random(int, int, Random) - Static method in class tech.bitey.bufferstuff.BufferBitSet
- 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
channeluntil the given buffer is full (remainingis0). - resizable(boolean) - Method in class tech.bitey.bufferstuff.BufferBitSet
-
Returns a new
BufferBitSetwith 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 specifiedtoIndex(exclusive) totrue. - set(int, int, boolean) - Method in class tech.bitey.bufferstuff.BufferBitSet
-
Sets the bits from the specified
fromIndex(inclusive) to the specifiedtoIndex(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
BufferBitSetto represent bit values. - slice(ByteBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Slice a
ByteBufferand 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
ByteBufferin ascending order (lowest first). - sort(DoubleBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
DoubleBufferin ascending order (lowest first). - sort(FloatBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
FloatBufferin ascending order (lowest first). - sort(IntBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
IntBufferin ascending order (lowest first). - sort(LongBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
LongBufferin ascending order (lowest first). - sort(ShortBuffer, int, int) - Static method in class tech.bitey.bufferstuff.BufferSort
-
Sorts a range of the specified
ShortBufferin ascending order (lowest first). - stream(DoubleBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Returns a sequential
DoubleStreamwith the specified buffer as its source. - stream(DoubleBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Returns a sequential
DoubleStreamwith the specified range of the specified buffer as its source. - stream(IntBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Returns a sequential
IntStreamwith the specified buffer as its source. - stream(IntBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Returns a sequential
IntStreamwith the specified range of the specified buffer as its source. - stream(LongBuffer) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Returns a sequential
LongStreamwith the specified buffer as its source. - stream(LongBuffer, int, int, int) - Static method in enum tech.bitey.bufferstuff.BufferUtils
-
Returns a sequential
LongStreamwith 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
BitSetcontaining all of the bits in thisBufferBitSet. - 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
BufferBitSetequivalent to the representation of aSortedSetcontaining 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
BufferBitSetcontaining all of the bits in the givenBitSet. - 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
remainingbytes from the givenbufferinto the givenchannel. - 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.
All Classes All Packages