Uses of Class
me.sbasalaev.collection.Set
Packages that use Set
Package
Description
Useful utilities that I use throughout my projects.
Collection framework.
-
Uses of Set in me.sbasalaev
Methods in me.sbasalaev that return Set -
Uses of Set in me.sbasalaev.collection
Subclasses of Set in me.sbasalaev.collectionMethods in me.sbasalaev.collection that return SetModifier and TypeMethodDescriptionSet.clone()Returns shallow immutable copy of this set.Map.collectionEntries()Multimap.collectionEntries()Associations between keys and collections of values in this multimap.static <T> Set<T> Set.empty()Empty set.Map.entries()The set of key-value associations in this map.SetMultimap.entries()Returns set that contains only elements of this set satisfying given condition.static <T> Set<T> Set view of given java set.Set of values associated with given key in this multimap.Set containing only elements of this set that are also in another set.Map.keys()The set of keys that have an associated value in this map.Multimap.keys()Set of keys that have at least one associated value in this multimap.<R> Set<R> Returns set with given mapping applied to all elements of this set.static <T> Set<T> Set.of(T... elements) Set containing given elements.Collection.toSet()Traversable.toSet()Collects elements of this traversable into an immutable set.static <T> Set<T> Set containing elements of all given sets.static <T> Set<T> Set.union(Traversable<? extends Set<? extends T>> sets) Set containing elements of all given sets.Set<?> Set containing elements of both this and the other set.Set containing only elements of this set that are not in another set.Methods in me.sbasalaev.collection with parameters of type SetModifier and TypeMethodDescriptionSet containing only elements of this set that are also in another set.booleanSet.intersects(Set<?> other) Whether any element of this set is also in the given set.booleanWhether all elements of this set are also in the given set.booleanSet.isSuperset(Set<?> other) Whether all elements of given set are also in this set.static <T> Set<T> Set containing elements of all given sets.Set<?> Set containing elements of both this and the other set.Set containing only elements of this set that are not in another set.Method parameters in me.sbasalaev.collection with type arguments of type SetModifier and TypeMethodDescriptionstatic <T> Set<T> Set.union(Traversable<? extends Set<? extends T>> sets) Set containing elements of all given sets.