Package de.jetwick.util

Examples of de.jetwick.util.StrEntry


        addSort(sortKey, sortVal);
        return this;
    }

    private JetwickQuery addSort(String field, String order) {
        sortFields.add(new StrEntry(field, order));
        return this;
    }
View Full Code Here


        return q;
    }

    public JetwickQuery addFacetQuery(String name, String query) {
        facetQueries.add(new StrEntry(name, query));
        return this;
    }
View Full Code Here

TOP

Related Classes of de.jetwick.util.StrEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.