Uses of Class
org.apache.lucene.util.packed.PackedInts.Format

Packages that use PackedInts.Format
org.apache.lucene.util.packed Packed integer arrays and streams. 
 

Uses of PackedInts.Format in org.apache.lucene.util.packed
 

Fields in org.apache.lucene.util.packed declared as PackedInts.Format
 PackedInts.Format PackedInts.FormatAndBits.format
           
 

Methods in org.apache.lucene.util.packed that return PackedInts.Format
static PackedInts.Format PackedInts.Format.byId(int id)
          Get a format according to its ID.
protected abstract  PackedInts.Format PackedInts.Writer.getFormat()
          The format used to serialize values.
static PackedInts.Format PackedInts.Format.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PackedInts.Format[] PackedInts.Format.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.lucene.util.packed with parameters of type PackedInts.Format
static PackedInts.Decoder PackedInts.getDecoder(PackedInts.Format format, int version, int bitsPerValue)
          Get a PackedInts.Decoder.
static PackedInts.Reader PackedInts.getDirectReaderNoHeader(IndexInput in, PackedInts.Format format, int version, int valueCount, int bitsPerValue)
          Expert: Construct a direct PackedInts.Reader from a stream without reading metadata at the beginning of the stream.
static PackedInts.Encoder PackedInts.getEncoder(PackedInts.Format format, int version, int bitsPerValue)
          Get an PackedInts.Encoder.
static PackedInts.ReaderIterator PackedInts.getReaderIteratorNoHeader(DataInput in, PackedInts.Format format, int version, int valueCount, int bitsPerValue, int mem)
          Expert: Restore a PackedInts.ReaderIterator from a stream without reading metadata at the beginning of the stream.
static PackedInts.Reader PackedInts.getReaderNoHeader(DataInput in, PackedInts.Format format, int version, int valueCount, int bitsPerValue)
          Expert: Restore a PackedInts.Reader from a stream without reading metadata at the beginning of the stream.
static PackedInts.Writer PackedInts.getWriterNoHeader(DataOutput out, PackedInts.Format format, int valueCount, int bitsPerValue, int mem)
          Expert: Create a packed integer array writer for the given output, format, value count, and number of bits per value.
 

Constructors in org.apache.lucene.util.packed with parameters of type PackedInts.Format
PackedInts.FormatAndBits(PackedInts.Format format, int bitsPerValue)
           
PackedInts.Header(PackedInts.Format format, int valueCount, int bitsPerValue, int version)
           
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.