Class MultiValuedIntFieldSource
- java.lang.Object
-
- org.apache.lucene.queries.function.ValueSource
-
- org.apache.lucene.queries.function.valuesource.FieldCacheSource
-
- org.apache.lucene.queries.function.valuesource.IntFieldSource
-
- org.apache.lucene.queries.function.valuesource.MultiValuedIntFieldSource
-
public class MultiValuedIntFieldSource extends IntFieldSource
Obtains int field values fromLeafReader.getSortedNumericDocValues(java.lang.String)
and using aSortedNumericSelector
it gives a single-valued ValueSource view of a field.
-
-
Field Summary
Fields Modifier and Type Field Description protected SortedNumericSelector.Type
selector
-
Fields inherited from class org.apache.lucene.queries.function.valuesource.FieldCacheSource
field
-
-
Constructor Summary
Constructors Constructor Description MultiValuedIntFieldSource(String field, SortedNumericSelector.Type selector)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
description()
description of field, used in explain()boolean
equals(Object o)
protected NumericDocValues
getNumericDocValues(Map<Object,Object> context, LeafReaderContext readerContext)
SortField
getSortField(boolean reverse)
EXPERIMENTAL: This method is subject to change.int
hashCode()
-
Methods inherited from class org.apache.lucene.queries.function.valuesource.IntFieldSource
getValues
-
Methods inherited from class org.apache.lucene.queries.function.valuesource.FieldCacheSource
getField
-
Methods inherited from class org.apache.lucene.queries.function.ValueSource
asDoubleValuesSource, asLongValuesSource, createWeight, fromDoubleValuesSource, newContext, toString
-
-
-
-
Field Detail
-
selector
protected final SortedNumericSelector.Type selector
-
-
Constructor Detail
-
MultiValuedIntFieldSource
public MultiValuedIntFieldSource(String field, SortedNumericSelector.Type selector)
-
-
Method Detail
-
getSortField
public SortField getSortField(boolean reverse)
Description copied from class:ValueSource
EXPERIMENTAL: This method is subject to change.Get the SortField for this ValueSource. Uses the
ValueSource.getValues(java.util.Map, org.apache.lucene.index.LeafReaderContext)
to populate the SortField.- Overrides:
getSortField
in classIntFieldSource
- Parameters:
reverse
- true if this is a reverse sort.- Returns:
- The
SortField
for the ValueSource
-
description
public String description()
Description copied from class:ValueSource
description of field, used in explain()- Overrides:
description
in classIntFieldSource
-
getNumericDocValues
protected NumericDocValues getNumericDocValues(Map<Object,Object> context, LeafReaderContext readerContext) throws IOException
- Overrides:
getNumericDocValues
in classIntFieldSource
- Throws:
IOException
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classIntFieldSource
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classIntFieldSource
-
-