Example usage for org.apache.lucene.queries.function.valuesource MultiValuedLongFieldSource MultiValuedLongFieldSource

List of usage examples for org.apache.lucene.queries.function.valuesource MultiValuedLongFieldSource MultiValuedLongFieldSource

Introduction

In this page you can find the example usage for org.apache.lucene.queries.function.valuesource MultiValuedLongFieldSource MultiValuedLongFieldSource.

Prototype

public MultiValuedLongFieldSource(String field, Type selector) 

Source Link

Usage

From source file:org.apache.solr.schema.DatePointField.java

License:Apache License

@Override
protected ValueSource getSingleValueSource(SortedNumericSelector.Type choice, SchemaField field) {
    return new MultiValuedLongFieldSource(field.getName(), choice);
}