Uses of Class
org.apache.commons.collections4.SetUtils.SetView
Package
Description
Interfaces and utilities shared across all packages.
-
Uses of SetUtils.SetView in org.apache.commons.collections4
Modifier and TypeMethodDescriptionstatic <E> SetUtils.SetView
<E> SetUtils.difference
(Set<? extends E> setA, Set<? extends E> setB) Returns an unmodifiable view containing the difference of the givenSet
s, denoted bya \ b
(ora - b
).static <E> SetUtils.SetView
<E> SetUtils.disjunction
(Set<? extends E> setA, Set<? extends E> setB) Returns an unmodifiable view of the symmetric difference of the givenSet
s.static <E> SetUtils.SetView
<E> SetUtils.intersection
(Set<? extends E> setA, Set<? extends E> setB) Returns an unmodifiable view of the intersection of the givenSet
s.static <E> SetUtils.SetView
<E> Returns an unmodifiable view of the union of the givenSet
s.