scala.collection.JavaConversions

MutableBufferWrapper

class MutableBufferWrapper[A](underlying: Buffer[A]) extends AbstractList[A] with Product

Inherits

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

Value Members

  1. def add(elem: A): Boolean

  2. def add(arg0: Int, arg1: A): Unit

  3. def addAll(arg0: Int, arg1: java.util.Collection[_ <: A]): Boolean

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

  5. 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

  6. def clear(): Unit

  7. def contains(arg0: Any): Boolean

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

  9. def equals(arg0: Any): Boolean

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

  10. def get(i: Int): A

  11. def hashCode(): Int

    Returns a hash code value for the object

  12. def indexOf(arg0: Any): Int

  13. def isEmpty(): Boolean

  14. def iterator(): Iterator[A]

  15. def lastIndexOf(arg0: Any): Int

  16. def listIterator(arg0: Int): ListIterator[A]

  17. def listIterator(): ListIterator[A]

  18. def productArity: Int

    return k for a product A(x_1,

  19. def productElement(arg0: Int): Any

    for a product A(x_1,

  20. def productElements: Iterator[Any]

  21. def productIterator: Iterator[Any]

    An iterator that returns all fields of this product

  22. def productPrefix: String

    By default the empty string

  23. def remove(i: Int): A

  24. def remove(arg0: Any): Boolean

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

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

  27. def set(i: Int, elem: A): A

  28. def size(): Int

  29. def subList(arg0: Int, arg1: Int): List[A]

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

  31. def toArray(): Array[AnyRef]

  32. def toString(): String

    Returns a string representation of the object

  33. val underlying: Buffer[A]

Instance constructors

  1. new MutableBufferWrapper(underlying: Buffer[A])