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

com.rbmhtechnology.vind.parser.queryparser.FieldClause Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.rbmhtechnology.vind.parser.queryparser;


public abstract class FieldClause  implements Clause{

    private boolean negated = false;

    private String field = null;

    public FieldClause(boolean negated, String field) {
        this.negated = negated;
        this.field = field;
    }

    public boolean isNegated() {
        return negated;
    }

    public FieldClause setNegated(boolean negated) {
        this.negated = negated;
        return this;
    }

    public String getField() {
        return field;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy