Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs for testing (simulate old disk formats, wacky theoretical use cases, etc)
|
org.apache.lucene.facet.sortedset |
Provides faceting capabilities over facets that were indexed with
SortedSetDocValuesFacetField . |
org.apache.lucene.index |
Misc index tools and index support.
|
org.apache.lucene.index.sorter |
Provides index sorting capablities.
|
org.apache.lucene.search |
This package contains a single proximity query, TermAutomatonQuery.
|
Modifier and Type | Method and Description |
---|---|
abstract SortedSetDocValues |
DocValuesProducer.getSortedSet(FieldInfo field)
Returns
SortedSetDocValues for this field. |
Modifier and Type | Method and Description |
---|---|
void |
DocValuesConsumer.mergeSortedSetField(FieldInfo fieldInfo,
MergeState mergeState,
List<SortedSetDocValues> toMerge)
Merges the sortedset docvalues from
toMerge . |
Modifier and Type | Method and Description |
---|---|
SortedSetDocValues |
DefaultSortedSetDocValuesReaderState.getDocValues()
Return top-level doc values.
|
abstract SortedSetDocValues |
SortedSetDocValuesReaderState.getDocValues()
Return top-level doc values.
|
Modifier and Type | Class and Description |
---|---|
static class |
AssertingAtomicReader.AssertingSortedSetDocValues
Wraps a SortedSetDocValues but with additional asserts
|
static class |
MultiDocValues.MultiSortedSetDocValues
Implements MultiSortedSetDocValues over n subs, using an OrdinalMap
|
class |
RandomAccessOrds
Extension of
SortedSetDocValues that supports random access
to the ordinals of a document. |
Modifier and Type | Field and Description |
---|---|
SortedSetDocValues[] |
MultiDocValues.MultiSortedSetDocValues.values
leaf values
|
Modifier and Type | Method and Description |
---|---|
static SortedSetDocValues |
DocValues.getSortedSet(AtomicReader in,
String field)
Returns SortedSetDocValues for the reader, or
DocValues.emptySortedSet() if it has none. |
SortedSetDocValues |
FieldFilterAtomicReader.getSortedSetDocValues(String field) |
SortedSetDocValues |
AssertingAtomicReader.getSortedSetDocValues(String field) |
SortedSetDocValues |
ParallelAtomicReader.getSortedSetDocValues(String field) |
SortedSetDocValues |
SlowCompositeReaderWrapper.getSortedSetDocValues(String field) |
abstract SortedSetDocValues |
AtomicReader.getSortedSetDocValues(String field)
Returns
SortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. |
SortedSetDocValues |
SegmentReader.getSortedSetDocValues(String field) |
SortedSetDocValues |
FilterAtomicReader.getSortedSetDocValues(String field) |
static SortedSetDocValues |
MultiDocValues.getSortedSetValues(IndexReader r,
String field)
Returns a SortedSetDocValues for a reader's docvalues (potentially doing extremely slow things).
|
SortedSetDocValues |
DocTermOrds.iterator(AtomicReader reader)
Returns a SortedSetDocValues view of this instance
|
Modifier and Type | Method and Description |
---|---|
static MultiDocValues.OrdinalMap |
MultiDocValues.OrdinalMap.build(Object owner,
SortedSetDocValues[] values,
float acceptableOverheadRatio)
Create an ordinal map that uses the number of unique values of each
SortedSetDocValues instance as a weight. |
static Bits |
DocValues.docsWithValue(SortedSetDocValues dv,
int maxDoc)
Returns a Bits representing all documents from
dv that have a value. |
protected void |
BaseDocValuesFormatTestCase.doTestSortedSetEnumAdvanceIndependently(SortedSetDocValues dv) |
static SortedDocValues |
DocValues.unwrapSingleton(SortedSetDocValues dv)
Returns a single-valued view of the SortedSetDocValues, if it was previously
wrapped with
DocValues.singleton(SortedDocValues) , or null. |
Constructor and Description |
---|
AssertingSortedSetDocValues(SortedSetDocValues in,
int maxDoc) |
Modifier and Type | Method and Description |
---|---|
SortedSetDocValues |
SortingAtomicReader.getSortedSetDocValues(String field) |
Modifier and Type | Method and Description |
---|---|
SortedSetDocValues |
FieldCache.getDocTermOrds(AtomicReader reader,
String field)
Checks the internal cache for an appropriate entry, and if none is found, reads the term values
in
field and returns a DocTermOrds instance, providing a method to retrieve
the terms (as ords) per document. |
Copyright © 2000–2016 The Apache Software Foundation. All rights reserved.