| Modifier and Type | Class and Description |
|---|---|
class |
SortingBinaryDocValues
Base class for building
SortedBinaryDocValues instances based on unsorted content. |
| Modifier and Type | Method and Description |
|---|---|
static SortedBinaryDocValues |
FieldData.emptySortedBinary(int maxDoc)
Return a
SortedBinaryDocValues that doesn't contain any value. |
SortedBinaryDocValues |
AtomicFieldData.getBytesValues()
Return a String representation of the values.
|
SortedBinaryDocValues |
ScriptDocValues.Strings.getInternalValues() |
static SortedBinaryDocValues |
FieldData.singleton(org.apache.lucene.index.BinaryDocValues values,
org.apache.lucene.util.Bits docsWithField)
Returns a multi-valued view over the provided
BinaryDocValues. |
static SortedBinaryDocValues |
FieldData.toString(MultiGeoPointValues values)
Return a
String representation of the provided values. |
static SortedBinaryDocValues |
FieldData.toString(org.apache.lucene.index.RandomAccessOrds values)
Return a
String representation of the provided values. |
static SortedBinaryDocValues |
FieldData.toString(org.apache.lucene.index.SortedNumericDocValues values)
Return a
String representation of the provided values. |
static SortedBinaryDocValues |
FieldData.toString(SortedNumericDoubleValues values)
Return a
String representation of the provided values. |
| Modifier and Type | Method and Description |
|---|---|
static org.apache.lucene.util.Bits |
FieldData.docsWithValue(SortedBinaryDocValues dv,
int maxDoc)
Returns a
Bits representing all documents from dv that have a value. |
static boolean |
FieldData.isMultiValued(SortedBinaryDocValues values)
Returns whether the provided values *might* be multi-valued.
|
static org.apache.lucene.index.BinaryDocValues |
FieldData.unwrapSingleton(SortedBinaryDocValues values)
Returns a single-valued view of the
SortedBinaryDocValues,
if it was previously wrapped with FieldData.singleton(BinaryDocValues, Bits),
or null. |
static org.apache.lucene.util.Bits |
FieldData.unwrapSingletonBits(SortedBinaryDocValues values)
Returns the documents with a value for the
SortedBinaryDocValues,
if it was previously wrapped with FieldData.singleton(BinaryDocValues, Bits),
or null. |
| Constructor and Description |
|---|
ScriptDocValues.Strings(SortedBinaryDocValues values) |
| Modifier and Type | Method and Description |
|---|---|
protected SortedBinaryDocValues |
BytesRefFieldComparatorSource.getValues(org.apache.lucene.index.LeafReaderContext context) |
| Modifier and Type | Method and Description |
|---|---|
SortedBinaryDocValues |
AbstractAtomicOrdinalsFieldData.getBytesValues() |
SortedBinaryDocValues |
BinaryDVAtomicFieldData.getBytesValues() |
SortedBinaryDocValues |
AbstractAtomicGeoPointFieldData.getBytesValues() |
| Modifier and Type | Method and Description |
|---|---|
protected org.apache.lucene.util.BytesRef |
MultiValueMode.pick(SortedBinaryDocValues values,
org.apache.lucene.util.BytesRef missingValue,
int doc) |
org.apache.lucene.index.BinaryDocValues |
MultiValueMode.select(SortedBinaryDocValues values,
org.apache.lucene.util.BytesRef missingValue)
Return a
BinaryDocValues instance that can be used to sort documents
with this mode and the provided values. |
org.apache.lucene.index.BinaryDocValues |
MultiValueMode.select(SortedBinaryDocValues values,
org.apache.lucene.util.BytesRef missingValue,
org.apache.lucene.util.BitSet rootDocs,
org.apache.lucene.search.DocIdSetIterator innerDocs,
int maxDoc)
Return a
BinaryDocValues instance that can be used to sort root documents
with this mode, the provided values and filters for root/inner documents. |
| Modifier and Type | Method and Description |
|---|---|
abstract SortedBinaryDocValues |
ValuesSource.bytesValues(org.apache.lucene.index.LeafReaderContext context)
Get the current
ValuesSource.WithScript.BytesValues. |
SortedBinaryDocValues |
ValuesSource.Bytes.WithOrdinals.FieldData.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.Bytes.ParentChild.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.Bytes.FieldData.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.Bytes.Script.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.Numeric.WithScript.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.Numeric.FieldData.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.Numeric.Script.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.WithScript.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
SortedBinaryDocValues |
ValuesSource.GeoPoint.Fielddata.bytesValues(org.apache.lucene.index.LeafReaderContext context) |
| Modifier and Type | Class and Description |
|---|---|
class |
ScriptBytesValues
SortedBinaryDocValues implementation that reads values from a script. |
Copyright © 2009–2017. All rights reserved.