Uses of Interface
com.googlecode.javaewah.Buffer
Packages that use Buffer
-
Uses of Buffer in com.googlecode.javaewah
Classes in com.googlecode.javaewah that implement BufferModifier and TypeClassDescription(package private) final class
Long array wrapper.(package private) final class
java.nio.LongBuffer wrapper.Fields in com.googlecode.javaewah declared as BufferModifier and TypeFieldDescriptionprivate final Buffer
ChunkIteratorImpl.buffer
private final Buffer
ClearIntIterator.buffer
(package private) final Buffer
EWAHCompressedBitmap.buffer
The bufferprivate final Buffer
IntIteratorImpl.buffer
private final Buffer
IteratingBufferedRunningLengthWord.buffer
private final Buffer
ReverseIntIterator.buffer
(package private) final Buffer
RunningLengthWord.buffer
The array of words.Methods in com.googlecode.javaewah that return BufferModifier and TypeMethodDescriptionEWAHIterator.buffer()
Access to the bufferReverseEWAHIterator.buffer()
Access to the bufferBuffer.clone()
Creates and returns a copy of the bufferMethods in com.googlecode.javaewah with parameters of type BufferModifier and TypeMethodDescriptionvoid
BitCounter.addStreamOfLiteralWords
(Buffer buffer, int start, int number) virtually add several literal words.void
BitmapStorage.addStreamOfLiteralWords
(Buffer buffer, int start, int number) if you have several literal words to copy over, this might be faster.void
EWAHCompressedBitmap.addStreamOfLiteralWords
(Buffer buffer, int start, int number) if you have several literal words to copy over, this might be faster.void
NonEmptyVirtualStorage.addStreamOfLiteralWords
(Buffer buffer, int start, int number) throws a NonEmptyException exception when number is greater than 0void
BitCounter.addStreamOfNegatedLiteralWords
(Buffer buffer, int start, int number) virtually add several negated literal words.void
BitmapStorage.addStreamOfNegatedLiteralWords
(Buffer buffer, int start, int number) Like "addStreamOfLiteralWords" but negates the words being added.void
EWAHCompressedBitmap.addStreamOfNegatedLiteralWords
(Buffer buffer, int start, int number) Same as addStreamOfLiteralWords, but the words are negated.void
NonEmptyVirtualStorage.addStreamOfNegatedLiteralWords
(Buffer buffer, int start, int number) throws a NonEmptyException exception when number is greater than 0(package private) static int
RunningLengthWord.getNumberOfLiteralWords
(Buffer buffer, int position) (package private) static boolean
RunningLengthWord.getRunningBit
(Buffer buffer, int position) (package private) static long
RunningLengthWord.getRunningLength
(Buffer buffer, int position) void
Buffer.negative_push_back
(Buffer buffer, int start, int number) Same as push_back, but the words are negated.void
LongArray.negative_push_back
(Buffer buffer, int start, int number) void
LongBufferWrapper.negative_push_back
(Buffer buffer, int start, int number) void
Appends the specified buffer words to the end of the buffer.void
void
(package private) static void
RunningLengthWord.setNumberOfLiteralWords
(Buffer buffer, int position, long number) (package private) static void
RunningLengthWord.setRunningBit
(Buffer buffer, int position, boolean b) (package private) static void
RunningLengthWord.setRunningLength
(Buffer buffer, int position, long number) void
Swap the content of the buffer with another.void
void
Constructors in com.googlecode.javaewah with parameters of type BufferModifierConstructorDescriptionprivate
EWAHCompressedBitmap
(Buffer buffer) EWAHIterator
(Buffer buffer) Instantiates a new EWAH iterator.ReverseEWAHIterator
(Buffer buffer) Instantiates a new reverse EWAH iterator.(package private)
RunningLengthWord
(Buffer buffer, int p) Instantiates a new running length word.