Uses of Class
org.apache.lucene.codecs.DocValuesFormat
-
Packages that use DocValuesFormat Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene3x Codec to support Lucene 3.x indexes (readonly)org.apache.lucene.codecs.lucene40 Lucene 4.0 file format.org.apache.lucene.codecs.lucene41 Lucene 4.1 file format.org.apache.lucene.codecs.lucene42 Lucene 4.2 file format.org.apache.lucene.codecs.lucene45 Lucene 4.5 file format.org.apache.lucene.codecs.lucene46 Lucene 4.6 file format.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field. -
-
Uses of DocValuesFormat in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return DocValuesFormat Modifier and Type Method Description abstract DocValuesFormat
Codec. docValuesFormat()
Encodes/decodes docvaluesDocValuesFormat
FilterCodec. docValuesFormat()
static DocValuesFormat
DocValuesFormat. forName(String name)
looks up a format by name -
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene3x
Methods in org.apache.lucene.codecs.lucene3x that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene3xCodec. docValuesFormat()
Deprecated. -
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene40
Subclasses of DocValuesFormat in org.apache.lucene.codecs.lucene40 Modifier and Type Class Description class
Lucene40DocValuesFormat
Deprecated.Only for reading old 4.0 and 4.1 segmentsMethods in org.apache.lucene.codecs.lucene40 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene40Codec. docValuesFormat()
Deprecated. -
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene41
Methods in org.apache.lucene.codecs.lucene41 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene41Codec. docValuesFormat()
Deprecated. -
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene42
Subclasses of DocValuesFormat in org.apache.lucene.codecs.lucene42 Modifier and Type Class Description class
Lucene42DocValuesFormat
Deprecated.Only for reading old 4.2 segmentsMethods in org.apache.lucene.codecs.lucene42 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene42Codec. docValuesFormat()
Deprecated.DocValuesFormat
Lucene42Codec. getDocValuesFormatForField(String field)
Deprecated.Returns the docvalues format that should be used for writing new segments offield
. -
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene45
Subclasses of DocValuesFormat in org.apache.lucene.codecs.lucene45 Modifier and Type Class Description class
Lucene45DocValuesFormat
Lucene 4.5 DocValues format.Methods in org.apache.lucene.codecs.lucene45 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene45Codec. docValuesFormat()
Deprecated.DocValuesFormat
Lucene45Codec. getDocValuesFormatForField(String field)
Deprecated.Returns the docvalues format that should be used for writing new segments offield
. -
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene46
Methods in org.apache.lucene.codecs.lucene46 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene46Codec. docValuesFormat()
DocValuesFormat
Lucene46Codec. getDocValuesFormatForField(String field)
Returns the docvalues format that should be used for writing new segments offield
. -
Uses of DocValuesFormat in org.apache.lucene.codecs.perfield
Subclasses of DocValuesFormat in org.apache.lucene.codecs.perfield Modifier and Type Class Description class
PerFieldDocValuesFormat
Enables per field docvalues support.Methods in org.apache.lucene.codecs.perfield that return DocValuesFormat Modifier and Type Method Description abstract DocValuesFormat
PerFieldDocValuesFormat. getDocValuesFormatForField(String field)
Returns the doc values format that should be used for writing new segments offield
.
-