Uses of Interface
com.googlecode.javaewah32.Buffer32
Packages that use Buffer32
-
Uses of Buffer32 in com.googlecode.javaewah32
Classes in com.googlecode.javaewah32 that implement Buffer32Modifier and TypeClassDescription(package private) class
Int array wrapper.(package private) final class
java.nio.IntBuffer wrapper.Fields in com.googlecode.javaewah32 declared as Buffer32Modifier and TypeFieldDescriptionprivate final Buffer32
ChunkIteratorImpl32.buffer
private final Buffer32
ClearIntIterator32.buffer
(package private) final Buffer32
EWAHCompressedBitmap32.buffer
The bufferprivate final Buffer32
IntIteratorImpl32.buffer
private final Buffer32
IteratingBufferedRunningLengthWord32.buffer
private final Buffer32
ReverseIntIterator32.buffer
(package private) final Buffer32
RunningLengthWord32.buffer
The array of words.Methods in com.googlecode.javaewah32 that return Buffer32Modifier and TypeMethodDescriptionEWAHIterator32.buffer()
Access to the bufferReverseEWAHIterator32.buffer()
Access to the bufferBuffer32.clone()
Creates and returns a copy of the bufferMethods in com.googlecode.javaewah32 with parameters of type Buffer32Modifier and TypeMethodDescriptionvoid
BitCounter32.addStreamOfLiteralWords
(Buffer32 buffer, int start, int number) virtually add several literal words.void
BitmapStorage32.addStreamOfLiteralWords
(Buffer32 buffer, int start, int number) if you have several literal words to copy over, this might be faster.void
EWAHCompressedBitmap32.addStreamOfLiteralWords
(Buffer32 buffer, int start, int number) if you have several literal words to copy over, this might be faster.void
NonEmptyVirtualStorage32.addStreamOfLiteralWords
(Buffer32 buffer, int start, int number) throws a NonEmptyException exception when number is greater than 0void
BitCounter32.addStreamOfNegatedLiteralWords
(Buffer32 buffer, int start, int number) virtually add several negated literal words.void
BitmapStorage32.addStreamOfNegatedLiteralWords
(Buffer32 buffer, int start, int number) Like "addStreamOfLiteralWords" but negates the words being added.void
EWAHCompressedBitmap32.addStreamOfNegatedLiteralWords
(Buffer32 buffer, int start, int number) Same as addStreamOfLiteralWords, but the words are negated.void
NonEmptyVirtualStorage32.addStreamOfNegatedLiteralWords
(Buffer32 buffer, int start, int number) throws a NonEmptyException exception when number is greater than 0(package private) static int
RunningLengthWord32.getNumberOfLiteralWords
(Buffer32 buffer, int position) (package private) static boolean
RunningLengthWord32.getRunningBit
(Buffer32 buffer, int position) (package private) static int
RunningLengthWord32.getRunningLength
(Buffer32 buffer, int position) void
Buffer32.negative_push_back
(Buffer32 buffer, int start, int number) Same as push_back, but the words are negated.void
IntArray.negative_push_back
(Buffer32 buffer, int start, int number) void
IntBufferWrapper.negative_push_back
(Buffer32 buffer, int start, int number) void
Appends the specified buffer words to the end of the buffer.void
void
(package private) static void
RunningLengthWord32.setNumberOfLiteralWords
(Buffer32 buffer, int position, int number) (package private) static void
RunningLengthWord32.setRunningBit
(Buffer32 buffer, int position, boolean b) (package private) static void
RunningLengthWord32.setRunningLength
(Buffer32 buffer, int position, int number) void
Swap the content of the buffer with another.void
void
Constructors in com.googlecode.javaewah32 with parameters of type Buffer32ModifierConstructorDescriptionprivate
EWAHCompressedBitmap32
(Buffer32 buffer) EWAHIterator32
(Buffer32 buffer) Instantiates a new eWAH iterator.ReverseEWAHIterator32
(Buffer32 buffer) Instantiates a new reverse EWAH iterator.(package private)
RunningLengthWord32
(Buffer32 buffer, int p) Instantiates a new running length word.