Uses of Class
com.google.common.collect.CompactHashSet
-
Packages that use CompactHashSet Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of CompactHashSet in com.google.common.collect
Subclasses of CompactHashSet in com.google.common.collect Modifier and Type Class Description (package private) classCompactLinkedHashSet<E>CompactLinkedHashSet is an implementation of a Set, which a predictable iteration order that matches the insertion order.Methods in com.google.common.collect that return CompactHashSet Modifier and Type Method Description static <E> CompactHashSet<E>CompactHashSet. create()Creates an emptyCompactHashSetinstance.static <E> CompactHashSet<E>CompactHashSet. create(E... elements)Creates a mutableCompactHashSetinstance containing the given elements in unspecified order.static <E> CompactHashSet<E>CompactHashSet. create(java.util.Collection<? extends E> collection)Creates a mutableCompactHashSetinstance containing the elements of the given collection in unspecified order.static <E> CompactHashSet<E>CompactHashSet. createWithExpectedSize(int expectedSize)Creates aCompactHashSetinstance, with a high enough "initial capacity" that it should holdexpectedSizeelements without growth.
-