Example usage for org.apache.lucene.queries.function ValueSource subclass-usage

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

Introduction

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

Usage

From source file alba.solr.core.PseudoFieldsDynamicValueSource.java

public class PseudoFieldsDynamicValueSource extends ValueSource {

    private SolrPseudoField pseudoField;

    private Map<String, String> args;

From source file com.indoqa.solr.spatial.corridor.query.points.AbstractPointsQueryCorridorValueSource.java

public abstract class AbstractPointsQueryCorridorValueSource extends ValueSource {

    private List<Point> queryPoints;
    private ValueSource routeValueSource;

    protected AbstractPointsQueryCorridorValueSource(List<Point> queryPoints, ValueSource routeValueSource) {

From source file com.indoqa.solr.spatial.corridor.query.route.AbstractRouteQueryValueSource.java

public abstract class AbstractRouteQueryValueSource extends ValueSource {

    private LineString lineString;
    private ValueSource loctionValueSource;

    protected AbstractRouteQueryValueSource(LineString lineString, ValueSource loctionValueSource) {

From source file com.mysoft.b2b.solr.B258DynamicSourceParser.java

class B258DynamicSource extends ValueSource {
    public ValueSource[] valueSource;
    public ValueSource fieldSource;

    public B258DynamicSource(ValueSource[] valueSource, ValueSource fieldSource) {
        this.valueSource = valueSource;

From source file com.rzewucki.solr.functions.LengthFunction.java

/**
 * This class provides named function to check the length of value in a
 * given field. It might be used in function queries, sorting and grouping
 * results.
 * @author Marcin Rzewucki
 * @version 1.0.0 2014/01/08

From source file net.semanticmetadata.lire.solr.LireValueSource.java

/**
 * A query function for sorting results based on the LIRE CBIR functions.
 * Implementation based partially on the outdated guide given on http://www.supermind.org/blog/756,
 * comments on the mailing list provided from Chris Hostetter, and the 4.4 Solr and Lucene source.
 *
 * @author Mathias Lux, 17.09.13 12:26

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

/**
 * Abstract {@link ValueSource} implementation which wraps two ValueSources
 * and applies an extendible double function to their values.
 **/
public abstract class DualDoubleFunction extends ValueSource {
    protected final ValueSource a;

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

/**
 * <code>DefaultIsMissingFieldSource</code> wraps a field source to return missing values 
 * if the value is equal to the default value.
 */
public class FilterFieldSource extends ValueSource {
    public final static String NAME = AnalyticsParams.FILTER;

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

/**
 * Abstract {@link ValueSource} implementation which wraps multiple ValueSources
 * and applies an extendible date function to their values.
 **/
public abstract class MultiDateFunction extends ValueSource {
    protected final ValueSource[] sources;

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

/**
 * Abstract {@link ValueSource} implementation which wraps multiple ValueSources
 * and applies an extendible double function to their values.
 **/
public abstract class MultiDoubleFunction extends ValueSource {
    protected final ValueSource[] sources;