A Java Set
that wraps a Ceylon Set
. This
set is unmodifiable, throwing
UnsupportedOperationException
from mutator
methods.
Anything
Object
Basic
...and other supertypesAbstractCollection
...and other supertypesAbstractSet
...and other supertypesno subtypes hierarchy
Initializer |
JavaSet(Set<E> set) |
Inherited Attributes |
Attributes inherited from: AbstractCollection<E> empty , string |
Attributes inherited from: AbstractSet<E> hash |
Attributes inherited from: Object |
Methods | |
add | Source Codeshared actual Boolean add(E? e) Refines AbstractCollection.add ultimately refines Collection.add |
clear | Source Codeshared actual void clear() Refines AbstractCollection.clear ultimately refines Collection.clear |
iterator | Source Codeshared actual Iterator<E> iterator() Refines AbstractCollection.iterator ultimately refines Iterable.iterator |
remove | Source Codeshared actual Boolean remove(Object? e) Refines AbstractCollection.remove ultimately refines Collection.remove |
removeAll | Source Codeshared actual Boolean removeAll(Collection<out Object> collection) Refines AbstractSet.removeAll ultimately refines Collection.removeAll |
retainAll | Source Codeshared actual Boolean retainAll(Collection<out Object> collection) Refines AbstractCollection.retainAll ultimately refines Collection.retainAll |
size | Source Codeshared actual Integer size() Refines AbstractCollection.size ultimately refines Collection.size |
Inherited Methods |
Methods inherited from: AbstractCollection<E> add , addAll , clear , contains , containsAll , iterator , remove , removeAll , retainAll , size , toArray |
Methods inherited from: AbstractSet<E> equals , removeAll |
Methods inherited from: Object |