Java org.apache.commons.collections SetUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections SetUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections SetUtils.

The text is from its open source code.

Field

SetEMPTY_SET
An empty unmodifiable set.
SortedSetEMPTY_SORTED_SET
An empty unmodifiable sorted set.

Method

booleanisEqualSet(final Collection set1, final Collection set2)
Tests two sets for equality as per the equals() contract in java.util.Set#equals(java.lang.Object) .
SetorderedSet(Set set)
Returns a set that maintains the order of elements that are added backed by the given set.
SettransformedSet(Set set, Transformer transformer)
Returns a transformed set backed by the given set.
SettypedSet(Set set, Class type)
Returns a typed set backed by the given set.
SetunmodifiableSet(Set set)
Returns an unmodifiable set backed by the given set.