Groovy JDK

java.util
Class Set

Method Summary
Set asImmutable()
A convenience method for creating an immutable list
Set asSynchronized()
A convenience method for creating a synchronized Set
Set minus(Collection operands)
Create a Set composed of the elements of the first set minus the elements of the given collection

TODO: remove using number comparator?

Set minus(Object operand)
Create a Set composed of the elements of the first set minus the operand
 
Method Detail

asImmutable

public Set asImmutable()
A convenience method for creating an immutable list.

Returns:
an immutable Set
See:
Collections#unmodifiableSet.

asSynchronized

public Set asSynchronized()
A convenience method for creating a synchronized Set.

Returns:
a synchronized Set
See:
Collections#synchronizedSet.

minus

public Set minus(Collection operands)
Create a Set composed of the elements of the first set minus the elements of the given collection.

TODO: remove using number comparator?

Parameters:
operands - the items to remove from the set.
Returns:
the resulting set

minus

public Set minus(Object operand)
Create a Set composed of the elements of the first set minus the operand.

Parameters:
operand - the operand to remove from the set.
Returns:
the resulting set

Groovy JDK