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

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

Introduction

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

Usage

From source file org.apache.solr.analytics.util.valuesource.DateFieldSource.java

/**
 * Extends {@link LongFieldSource} to have a field source that takes in 
 * and returns {@link Date} values while working with long values internally.
 */
public class DateFieldSource extends LongFieldSource {

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

class DatePointFieldSource extends LongFieldSource {

    public DatePointFieldSource(String field) {
        super(field);
    }

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

class TrieDateFieldSource extends LongFieldSource {

    public TrieDateFieldSource(String field, FieldCache.LongParser parser) {
        super(field, parser);
    }