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 |
---|
Strings(SortedBinaryDocValues values) |
Modifier and Type | Method and Description |
---|---|
protected SortedBinaryDocValues |
BytesRefFieldComparatorSource.getValues(org.apache.lucene.index.AtomicReaderContext context) |
Modifier and Type | Method and Description |
---|---|
SortedBinaryDocValues |
BinaryDVAtomicFieldData.getBytesValues() |
SortedBinaryDocValues |
AbstractAtomicOrdinalsFieldData.getBytesValues() |
Modifier and Type | Method and Description |
---|---|
protected org.apache.lucene.util.BytesRef |
MultiValueMode.pick(SortedBinaryDocValues values,
org.apache.lucene.util.BytesRef missingValue) |
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.FixedBitSet rootDocs,
org.apache.lucene.util.FixedBitSet 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()
Get the current
ValuesSource.WithScript.BytesValues . |
SortedBinaryDocValues |
ValuesSource.Bytes.WithOrdinals.FieldData.bytesValues() |
SortedBinaryDocValues |
ValuesSource.Bytes.ParentChild.bytesValues() |
SortedBinaryDocValues |
ValuesSource.Bytes.FieldData.bytesValues() |
SortedBinaryDocValues |
ValuesSource.Bytes.Script.bytesValues() |
SortedBinaryDocValues |
ValuesSource.Numeric.WithScript.bytesValues() |
SortedBinaryDocValues |
ValuesSource.Numeric.FieldData.bytesValues() |
SortedBinaryDocValues |
ValuesSource.Numeric.Script.bytesValues() |
SortedBinaryDocValues |
ValuesSource.WithScript.bytesValues() |
SortedBinaryDocValues |
ValuesSource.GeoPoint.bytesValues() |
Modifier and Type | Class and Description |
---|---|
class |
ScriptBytesValues
SortedBinaryDocValues implementation that reads values from a script. |
Modifier and Type | Method and Description |
---|---|
void |
HashedAggregator.onDoc(int docId,
SortedBinaryDocValues values) |
Copyright © 2009–2015. All rights reserved.