Uses of Class
org.apache.lucene.util.packed.PackedInts.Mutable
-
Packages that use PackedInts.Mutable Package Description org.apache.lucene.util.compress Compression utilities.org.apache.lucene.util.packed Packed integer arrays and streams. -
-
Uses of PackedInts.Mutable in org.apache.lucene.util.compress
Fields in org.apache.lucene.util.compress declared as PackedInts.Mutable Modifier and Type Field Description private PackedInts.MutableLZ4.FastCompressionHashTable. hashTable -
Uses of PackedInts.Mutable in org.apache.lucene.util.packed
Subclasses of PackedInts.Mutable in org.apache.lucene.util.packed Modifier and Type Class Description (package private) classDirect16Direct wrapping of 16-bits values to a backing array.(package private) classDirect32Direct wrapping of 32-bits values to a backing array.(package private) classDirect64Direct wrapping of 64-bits values to a backing array.(package private) classDirect8Direct wrapping of 8-bits values to a backing array.classGrowableWriterImplementsPackedInts.Mutable, but grows the bit count of the underlying packed ints on-demand.(package private) classPacked16ThreeBlocksPacks integers into 3 shorts (48 bits per value).(package private) classPacked64Space optimized random access capable array of values with a fixed number of bits/value.(package private) classPacked64SingleBlockThis class is similar toPacked64except that it trades space for speed by ensuring that a single block needs to be read/written in order to read/write a value.(package private) static classPacked64SingleBlock.Packed64SingleBlock1(package private) static classPacked64SingleBlock.Packed64SingleBlock10(package private) static classPacked64SingleBlock.Packed64SingleBlock12(package private) static classPacked64SingleBlock.Packed64SingleBlock16(package private) static classPacked64SingleBlock.Packed64SingleBlock2(package private) static classPacked64SingleBlock.Packed64SingleBlock21(package private) static classPacked64SingleBlock.Packed64SingleBlock3(package private) static classPacked64SingleBlock.Packed64SingleBlock32(package private) static classPacked64SingleBlock.Packed64SingleBlock4(package private) static classPacked64SingleBlock.Packed64SingleBlock5(package private) static classPacked64SingleBlock.Packed64SingleBlock6(package private) static classPacked64SingleBlock.Packed64SingleBlock7(package private) static classPacked64SingleBlock.Packed64SingleBlock8(package private) static classPacked64SingleBlock.Packed64SingleBlock9(package private) classPacked8ThreeBlocksPacks integers into 3 bytes (24 bits per value).(package private) static classPackedInts.MutableImplFields in org.apache.lucene.util.packed declared as PackedInts.Mutable Modifier and Type Field Description private PackedInts.MutableGrowableWriter. current(package private) PackedInts.Mutable[]AbstractPagedMutable. subMutablesMethods in org.apache.lucene.util.packed that return PackedInts.Mutable Modifier and Type Method Description PackedInts.MutableGrowableWriter. getMutable()static PackedInts.MutablePackedInts. getMutable(int valueCount, int bitsPerValue, float acceptableOverheadRatio)Create a packed integer array with the given amount of values initialized to 0.static PackedInts.MutablePackedInts. getMutable(int valueCount, int bitsPerValue, PackedInts.Format format)Same asPackedInts.getMutable(int, int, float)with a pre-computed number of bits per value and format.protected abstract PackedInts.MutableAbstractPagedMutable. newMutable(int valueCount, int bitsPerValue)protected PackedInts.MutablePagedGrowableWriter. newMutable(int valueCount, int bitsPerValue)protected PackedInts.MutablePagedMutable. newMutable(int valueCount, int bitsPerValue)Methods in org.apache.lucene.util.packed with parameters of type PackedInts.Mutable Modifier and Type Method Description static voidPackedInts. copy(PackedInts.Reader src, int srcPos, PackedInts.Mutable dest, int destPos, int len, int mem)Copysrc[srcPos:srcPos+len]intodest[destPos:destPos+len]using at mostmembytes.(package private) static voidPackedInts. copy(PackedInts.Reader src, int srcPos, PackedInts.Mutable dest, int destPos, int len, long[] buf)Same asPackedInts.copy(Reader, int, Mutable, int, int, int)but using a pre-allocated buffer.
-