Package com.dotcms.repackage.org.elasticsearch.search.facet

Examples of com.dotcms.repackage.org.elasticsearch.search.facet.Facet


        //Search with the given query
        Map<String, Facet> facets = siteSearchAPI.getFacets( indexName, query );
        for ( String key : facets.keySet() ) {

            Facet internalFacet = facets.get( key );

            //Verify the type of the facet in order to be able to create a proper wrapper for it
            if ( internalFacet instanceof InternalStringTermsFacet ) {

                InternalStringTermsFacet facet = (InternalStringTermsFacet) internalFacet;
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.org.elasticsearch.search.facet.Facet

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.