Uses of Class
org.apache.commons.collections4.SetUtils.SetView
Packages that use SetUtils.SetView
Package
Description
This package contains the interfaces and utilities shared across all the subpackages of this component.
-
Uses of SetUtils.SetView in org.apache.commons.collections4
Methods in org.apache.commons.collections4 that return SetUtils.SetViewModifier and TypeMethodDescriptionstatic <E> SetUtils.SetView<E>SetUtils.difference(Set<? extends E> a, Set<? extends E> b) Returns a unmodifiable view containing the difference of the givenSets, denoted bya \ b(ora - b).static <E> SetUtils.SetView<E>SetUtils.disjunction(Set<? extends E> a, Set<? extends E> b) Returns a unmodifiable view of the symmetric difference of the givenSets.static <E> SetUtils.SetView<E>SetUtils.intersection(Set<? extends E> a, Set<? extends E> b) Returns a unmodifiable view of the intersection of the givenSets.static <E> SetUtils.SetView<E>Returns a unmodifiable view of the union of the givenSets.