scala.collection.JavaConversions

MutableSetWrapper

class MutableSetWrapper[A](underlying: Set[A])(m: ClassManifest[A]) extends AbstractSet[A] with Product

Go to: companion

Inherits

  1. Product
  2. Equals
  3. AbstractSet
  4. Set
  5. AbstractCollection
  6. Collection
  7. Iterable
  8. AnyRef
  9. Any

Value Members

  1. def add(elem: A): Boolean

  2. def addAll(arg0: java.util.Collection[_ <: A]): Boolean

  3. def canEqual(arg0: Any): Boolean

    A method that should be called from every well-designed equals method that is open to be overridden in a subclass

  4. def clear(): Unit

  5. def contains(arg0: Any): Boolean

  6. def containsAll(arg0: java.util.Collection[_]): Boolean

  7. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  8. def hashCode(): Int

    Returns a hash code value for the object

  9. def isEmpty(): Boolean

  10. def iterator(): Iterator[A]

  11. def productArity: Int

    return k for a product A(x_1,

  12. def productElement(arg0: Int): Any

    for a product A(x_1,

  13. def productElements: Iterator[Any]

  14. def productIterator: Iterator[Any]

    An iterator that returns all fields of this product

  15. def productPrefix: String

    By default the empty string

  16. def remove(elem: AnyRef): Boolean

  17. def removeAll(arg0: java.util.Collection[_]): Boolean

  18. def retainAll(arg0: java.util.Collection[_]): Boolean

  19. def size(): Int

  20. def toArray[T](arg0: Array[T]): Array[T]

  21. def toArray(): Array[AnyRef]

  22. def toString(): String

    Returns a string representation of the object

  23. val underlying: Set[A]

Instance constructors

  1. new MutableSetWrapper(underlying: Set[A])(m: ClassManifest[A])