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

com.icthh.xm.commons.search.query.MatchQuery Maven / Gradle / Ivy

The newest version!
package com.icthh.xm.commons.search.query;

public class MatchQuery {

    public enum ZeroTermsQuery {
        NONE(0),
        ALL(1);

        private final int ordinal;

        ZeroTermsQuery(int ordinal) {
            this.ordinal = ordinal;
        }

    }

    public static final boolean DEFAULT_LENIENCY = false;

    public static final ZeroTermsQuery DEFAULT_ZERO_TERMS_QUERY = ZeroTermsQuery.NONE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy