Package org.elasticsearch.common.trove.set.hash

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


        }

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


        public AggregatorValueProc(TByteIntHashMap facets, Set<String> excluded, SearchScript script) {
            super(facets);
            if (excluded == null || excluded.isEmpty()) {
                this.excluded = null;
            } else {
                this.excluded = new TByteHashSet(excluded.size());
                for (String s : excluded) {
                    this.excluded.add(Byte.parseByte(s));
                }
            }
            this.script = script;
View Full Code Here

TOP

Related Classes of org.elasticsearch.common.trove.set.hash.TByteHashSet

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.