scala.collection.mutable

class JavaSetAdaptor

[source: scala/collection/mutable/JavaSetAdaptor.scala]

@deprecated

class JavaSetAdaptor[A](jset : java.util.Set[A])
extends Set[A]
This class can be used as an adaptor to create mutable sets from Java classes that implement interface java.util.Set.
Author
Matthias Zenger
Version
1.0, 19/09/2003
Deprecated
Use scala.collection.jcl.Set(jmap) instead
Method Summary
def += (elem : A) : Unit
Add a new element to the set.
def -= (elem : A) : Unit
Removes a single element from a set.
override def clear : Unit
Removes all elements from the set. After this operation is completed, the set will be empty.
override def clone : Set[A]
Return a clone of this set.
def contains (elem : A) : Boolean
Checks if this set contains element elem.
def elements : Iterator[A]
Creates a new iterator over all elements contained in this object.
override def isEmpty : Boolean
Checks if this set is empty.
def size : Int
Returns the number of elements in this set.
Methods inherited from Set
update, +=, ++=, ++=, +, +, ++, ++, incl, -=, --=, --=, -, -, --, --, excl, intersect, retain, <<, readOnly
Methods inherited from Set
apply, subsetOf, *, **, equals, hashCode, toArray, stringPrefix
Methods inherited from Collection
toString
Methods inherited from Iterable
concat, ++, map, flatMap, filter, partition, takeWhile, dropWhile, take, drop, foreach, forall, exists, find, findIndexOf, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toSeq, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, projection, hasDefiniteSize
Methods inherited from Function1
compose, andThen
Methods inherited from AnyRef
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def size : Int
Returns the number of elements in this set.
Returns
number of set elements.

override def isEmpty : Boolean
Checks if this set is empty.
Returns
true iff there is no element in the set.

def contains(elem : A) : Boolean
Checks if this set contains element elem.
Parameters
elem - the element to check for membership.
Returns
true iff elem is contained in this set.

def elements : Iterator[A]
Creates a new iterator over all elements contained in this object.
Returns
the new iterator

def +=(elem : A) : Unit
Add a new element to the set.
Parameters
elem - the element to be added
Overrides
Set.+=

def -=(elem : A) : Unit
Removes a single element from a set.
Parameters
elem - The element to be removed.
Overrides
Set.-=

override def clear : Unit
Removes all elements from the set. After this operation is completed, the set will be empty.
Overrides
Set.clear

override def clone : Set[A]
Return a clone of this set.
Returns
a set with the same elements.
Overrides
Set.clone