Example usage for org.apache.lucene.queries.function.valuesource VectorValueSource subclass-usage

List of usage examples for org.apache.lucene.queries.function.valuesource VectorValueSource subclass-usage

Introduction

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

Usage

From source file org.apache.solr.schema.LatLonType.java

class LatLonValueSource extends VectorValueSource {
    private final SchemaField sf;

    public LatLonValueSource(SchemaField sf, List<ValueSource> sources) {
        super(sources);
        this.sf = sf;

From source file org.apache.solr.schema.PointType.java

class PointTypeValueSource extends VectorValueSource {
    private final SchemaField sf;

    public PointTypeValueSource(SchemaField sf, List<ValueSource> sources) {
        super(sources);
        this.sf = sf;