Packages

t

java.util

Collection

trait Collection[E] extends Iterable[E]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Collection
  2. Iterable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def add(e: E): Boolean
  2. abstract def addAll(c: Collection[_ <: E]): Boolean
  3. abstract def clear(): Unit
  4. abstract def contains(o: Any): Boolean
  5. abstract def containsAll(c: Collection[_]): Boolean
  6. abstract def isEmpty(): Boolean
  7. abstract def iterator(): Iterator[E]
    Definition Classes
    CollectionIterable
  8. abstract def remove(o: Any): Boolean
  9. abstract def removeAll(c: Collection[_]): Boolean
  10. abstract def retainAll(c: Collection[_]): Boolean
  11. abstract def size(): Int
  12. abstract def toArray[T <: AnyRef](a: Array[T]): Array[T]
  13. abstract def toArray(): Array[AnyRef]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def forEach(action: Consumer[_ >: E]): Unit
    Definition Classes
    Iterable
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def parallelStream(): Stream[E]
  17. def removeIf(filter: Predicate[_ >: E]): Boolean
  18. def spliterator(): Spliterator[E]

    From the Java 8 documentation: The default implementation should usually be overridden.

    From the Java 8 documentation: The default implementation should usually be overridden. The spliterator returned by the default implementation has poor splitting capabilities, is unsized, and does not report any spliterator characteristics. Implementing classes can nearly always provide a better implementation.

    Definition Classes
    CollectionIterable
  19. def stream(): Stream[E]
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Iterable[E]

Inherited from AnyRef

Inherited from Any

Ungrouped