All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jparams.store.query.QueryDefinition Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package com.jparams.store.query;

import java.util.List;

public class QueryDefinition
{
    private final List indexMatches;
    private final Operator operator;

    public QueryDefinition(final List indexMatches, final Operator operator)
    {
        this.indexMatches = indexMatches;
        this.operator = operator;
    }

    public List getIndexMatches()
    {
        return indexMatches;
    }

    public Operator getOperator()
    {
        return operator;
    }

    @Override
    public String toString()
    {
        return "QueryDefinition{"
            + "indexMatches=" + indexMatches
            + ", operator=" + operator
            + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy