Package org.apache.lucene.facet.search

Examples of org.apache.lucene.facet.search.FloatFacetResultsHandler


            if (fas == FacetArraysSource.INT) {
                return new IntFacetResultsHandler(taxonomyReader, fr, facetArrays);
            }

            if (fas == FacetArraysSource.FLOAT) {
                return new FloatFacetResultsHandler(taxonomyReader, fr, facetArrays);
            }
        }

        if (fr.getResultMode() == ResultMode.PER_NODE_IN_TREE) {
            return new TopKInEachNodeHandler(taxonomyReader, fr, facetArrays);
View Full Code Here

TOP

Related Classes of org.apache.lucene.facet.search.FloatFacetResultsHandler

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.