Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc)
|
org.apache.lucene.codecs.asserting |
Codec for testing that asserts various contracts of the codec apis.
|
org.apache.lucene.codecs.cheapbastard |
Codec that unreasonably tries to use as little RAM as possible.
|
org.apache.lucene.codecs.cranky |
Codec for testing that throws random IOExceptions
|
org.apache.lucene.codecs.lucene3x |
Support for generating test indexes in the Lucene 3.x index format.
|
org.apache.lucene.codecs.lucene40 |
Support for testing
Lucene40PostingsFormat . |
org.apache.lucene.codecs.lucene41 |
Support for testing
Lucene41Codec . |
org.apache.lucene.codecs.lucene410 |
Lucene 4.10 file format.
|
org.apache.lucene.codecs.lucene42 |
Support for testing
Lucene42Codec . |
org.apache.lucene.codecs.lucene45 |
Support for testing
Lucene45Codec . |
org.apache.lucene.codecs.lucene46 |
Support for testing
Lucene46Codec . |
org.apache.lucene.codecs.lucene49 |
Support for testing
Lucene49Codec . |
org.apache.lucene.codecs.memory |
Term dictionary, DocValues or Postings formats that are read entirely into memory.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
org.apache.lucene.index |
Misc index tools and index support.
|
org.apache.lucene.util |
General test support.
|
Modifier and Type | Method and Description |
---|---|
abstract DocValuesFormat |
Codec.docValuesFormat()
Encodes/decodes docvalues
|
DocValuesFormat |
FilterCodec.docValuesFormat() |
static DocValuesFormat |
DocValuesFormat.forName(String name)
looks up a format by name
|
Modifier and Type | Class and Description |
---|---|
class |
AssertingDocValuesFormat
Just like
Lucene410DocValuesFormat but with additional asserts. |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
AssertingCodec.docValuesFormat() |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
CheapBastardCodec.docValuesFormat() |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
CrankyCodec.docValuesFormat() |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene3xCodec.docValuesFormat()
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene40DocValuesFormat
Deprecated.
Only for reading old 4.0 and 4.1 segments
|
class |
Lucene40RWDocValuesFormat
Read-write version of
Lucene40DocValuesFormat for testing |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene40RWCodec.docValuesFormat() |
DocValuesFormat |
Lucene40Codec.docValuesFormat()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene41RWCodec.docValuesFormat() |
DocValuesFormat |
Lucene41Codec.docValuesFormat()
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene410DocValuesFormat
Lucene 4.10 DocValues format.
|
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene410Codec.docValuesFormat() |
DocValuesFormat |
Lucene410Codec.getDocValuesFormatForField(String field)
Returns the docvalues format that should be used for writing
new segments of
field . |
Modifier and Type | Class and Description |
---|---|
class |
Lucene42DocValuesFormat
Deprecated.
Only for reading old 4.2 segments
|
class |
Lucene42RWDocValuesFormat
Read-write version of
Lucene42DocValuesFormat for testing. |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene42Codec.docValuesFormat()
Deprecated.
|
DocValuesFormat |
Lucene42RWCodec.getDocValuesFormatForField(String field) |
DocValuesFormat |
Lucene42Codec.getDocValuesFormatForField(String field)
Deprecated.
Returns the docvalues format that should be used for writing
new segments of
field . |
Modifier and Type | Class and Description |
---|---|
class |
Lucene45DocValuesFormat
Deprecated.
Only for reading old 4.3-4.5 segments
|
class |
Lucene45RWDocValuesFormat
Read-write version of
Lucene45DocValuesFormat for testing. |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene45Codec.docValuesFormat()
Deprecated.
|
DocValuesFormat |
Lucene45RWCodec.getDocValuesFormatForField(String field) |
DocValuesFormat |
Lucene45Codec.getDocValuesFormatForField(String field)
Deprecated.
Returns the docvalues format that should be used for writing
new segments of
field . |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene46Codec.docValuesFormat()
Deprecated.
|
DocValuesFormat |
Lucene46RWCodec.getDocValuesFormatForField(String field) |
DocValuesFormat |
Lucene46Codec.getDocValuesFormatForField(String field)
Deprecated.
Returns the docvalues format that should be used for writing
new segments of
field . |
Modifier and Type | Class and Description |
---|---|
class |
Lucene49DocValuesFormat
Lucene 4.9 DocValues format.
|
class |
Lucene49RWDocValuesFormat
Read-write version of
Lucene49DocValuesFormat for testing |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene49Codec.docValuesFormat() |
DocValuesFormat |
Lucene49RWCodec.getDocValuesFormatForField(String field) |
DocValuesFormat |
Lucene49Codec.getDocValuesFormatForField(String field)
Returns the docvalues format that should be used for writing
new segments of
field . |
Modifier and Type | Class and Description |
---|---|
class |
DirectDocValuesFormat
In-memory docvalues format that does no (or very little)
compression.
|
class |
MemoryDocValuesFormat
In-memory docvalues format
|
Modifier and Type | Class and Description |
---|---|
class |
PerFieldDocValuesFormat
Enables per field docvalues support.
|
Modifier and Type | Method and Description |
---|---|
abstract DocValuesFormat |
PerFieldDocValuesFormat.getDocValuesFormatForField(String field)
Returns the doc values format that should be used for writing
new segments of
field . |
Modifier and Type | Class and Description |
---|---|
class |
SimpleTextDocValuesFormat
plain text doc values format.
|
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
SimpleTextCodec.docValuesFormat() |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
RandomCodec.getDocValuesFormatForField(String name) |
Modifier and Type | Method and Description |
---|---|
static Codec |
TestUtil.alwaysDocValuesFormat(DocValuesFormat format)
Return a Codec that can read any of the
default codecs and formats, but always writes in the specified
format.
|
Copyright © 2000–2016 The Apache Software Foundation. All rights reserved.