Class BitmapIndexImpl.ComboBitset
- java.lang.Object
-
- org.eclipse.jgit.internal.storage.file.BitmapIndexImpl.ComboBitset
-
- Enclosing class:
- BitmapIndexImpl
private static final class BitmapIndexImpl.ComboBitset extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private InflatingBitSetinflatingBitmapprivate BitSettoAddprivate BitSettoRemove
-
Constructor Summary
Constructors Constructor Description ComboBitset()ComboBitset(com.googlecode.javaewah.EWAHCompressedBitmap bitmap)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) voidandNot(com.googlecode.javaewah.EWAHCompressedBitmap inbits)(package private) com.googlecode.javaewah.EWAHCompressedBitmapcombine()(package private) booleancontains(int position)(package private) voidor(com.googlecode.javaewah.EWAHCompressedBitmap inbits)(package private) voidremove(int position)(package private) voidset(int position)(package private) voidxor(com.googlecode.javaewah.EWAHCompressedBitmap inbits)
-
-
-
Field Detail
-
inflatingBitmap
private InflatingBitSet inflatingBitmap
-
toAdd
private BitSet toAdd
-
toRemove
private BitSet toRemove
-
-
Method Detail
-
combine
com.googlecode.javaewah.EWAHCompressedBitmap combine()
-
or
void or(com.googlecode.javaewah.EWAHCompressedBitmap inbits)
-
andNot
void andNot(com.googlecode.javaewah.EWAHCompressedBitmap inbits)
-
xor
void xor(com.googlecode.javaewah.EWAHCompressedBitmap inbits)
-
contains
boolean contains(int position)
-
remove
void remove(int position)
-
set
void set(int position)
-
-