Package | Description |
---|---|
n4e.core.system |
Modifier and Type | Method and Description |
---|---|
Set |
Set.difference(Set set)
The method
difference creates the difference between the both sets. |
Set |
Set.intersection(Set set)
The method
intersection creates the intersection between the both sets. |
Set |
Set.union(Set set)
The method
union creates the union between the both sets. |
Modifier and Type | Method and Description |
---|---|
void |
Set.addAllElements(Set set)
The method
addAllElements adds all elements of a given set. |
void |
Set.assignment(Set set)
The method
assignment assigns the set to the internal set. |
Set |
Set.difference(Set set)
The method
difference creates the difference between the both sets. |
boolean |
Set.equals(Set set)
The method
equals tests, if the parameter set equals the own set. |
Set |
Set.intersection(Set set)
The method
intersection creates the intersection between the both sets. |
boolean |
Set.isSubset(Set set)
The method
isSubset tests, if the parameter set is a subset of the own set. |
Set |
Set.union(Set set)
The method
union creates the union between the both sets. |