Examples of TFloatHashSet


Examples of org.elasticsearch.common.trove.set.hash.TFloatHashSet

        }

        if (excluded == null || excluded.isEmpty()) {
            this.excluded = null;
        } else {
            this.excluded = new TFloatHashSet(excluded.size());
            for (String s : excluded) {
                this.excluded.add(Float.parseFloat(s));
            }
        }
View Full Code Here

Examples of org.elasticsearch.common.trove.set.hash.TFloatHashSet

        public AggregatorValueProc(TFloatIntHashMap facets, Set<String> excluded, SearchScript script) {
            super(facets);
            if (excluded == null || excluded.isEmpty()) {
                this.excluded = null;
            } else {
                this.excluded = new TFloatHashSet(excluded.size());
                for (String s : excluded) {
                    this.excluded.add(Float.parseFloat(s));
                }
            }
            this.script = script;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.