Packages

o

java.util

Collections

object Collections

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Collections
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 lazy val EMPTY_LIST: List[_]
  5. final lazy val EMPTY_MAP: Map[_, _]
  6. final lazy val EMPTY_SET: Set[_]
  7. def addAll[T](c: Collection[_ >: T], elements: Array[AnyRef]): Boolean
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def binarySearch[T](list: List[_ <: T], key: T, c: Comparator[_ >: T]): Int
  10. def binarySearch[T](list: List[_ <: Comparable[_ >: T]], key: T): Int
  11. def checkedCollection[E](c: Collection[E], typ: Class[E]): Collection[E]
  12. def checkedList[E](list: List[E], typ: Class[E]): List[E]
  13. def checkedMap[K, V](m: Map[K, V], keyType: Class[K], valueType: Class[V]): Map[K, V]
  14. def checkedSet[E](s: Set[E], typ: Class[E]): Set[E]
  15. def checkedSortedMap[K, V](m: SortedMap[K, V], keyType: Class[K], valueType: Class[V]): SortedMap[K, V]
  16. def checkedSortedSet[E](s: SortedSet[E], typ: Class[E]): SortedSet[E]
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  18. def copy[T](dest: List[_ >: T], src: List[_ <: T]): Unit
  19. def disjoint(c1: Collection[_], c2: Collection[_]): Boolean
  20. def emptyEnumeration[T](): Enumeration[T]
  21. def emptyIterator[T](): Iterator[T]
  22. def emptyList[T](): List[T]
  23. def emptyListIterator[T](): ListIterator[T]
  24. def emptyMap[K, V](): Map[K, V]
  25. def emptySet[T](): Set[T]
  26. def enumeration[T](c: Collection[T]): Enumeration[T]
  27. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  29. def fill[T](list: List[_ >: T], obj: T): Unit
  30. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  31. def frequency(c: Collection[_], o: AnyRef): Int
  32. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  33. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  34. def indexOfSubList(source: List[_], target: List[_]): Int
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def lastIndexOfSubList(source: List[_], target: List[_]): Int
  37. def list[T](e: Enumeration[T]): ArrayList[T]
  38. def max[T](coll: Collection[_ <: T], comp: Comparator[_ >: T]): T
  39. def max[T <: _Comparable[T]](coll: Collection[_ <: T]): AnyRef
  40. def min[T](coll: Collection[_ <: T], comp: Comparator[_ >: T]): T
  41. def min[T <: _Comparable[T]](coll: Collection[_ <: T]): AnyRef
  42. def nCopies[T](n: Int, o: T): List[T]
  43. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  44. def newSetFromMap[E](map: Map[E, Boolean]): Set[E]
  45. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. def replaceAll[T](list: List[T], oldVal: T, newVal: T): Boolean
  48. def reverse(list: List[_]): Unit
  49. def reverseImpl[T](list: List[T]): Unit
    Annotations
    @inline()
  50. def reverseOrder[T](cmp: Comparator[T]): Comparator[T]
  51. def reverseOrder[T](): Comparator[T]
  52. def rotate(list: List[_], distance: Int): Unit
  53. def shuffle(list: List[_], rnd: Random): Unit
    Annotations
    @noinline()
  54. def shuffle(list: List[_]): Unit
  55. def singleton[T](o: T): Set[T]
  56. def singletonList[T](o: T): List[T]
  57. def singletonMap[K, V](key: K, value: V): Map[K, V]
  58. def sort[T](list: List[T], c: Comparator[_ >: T]): Unit
  59. def sort[T <: _Comparable[T]](list: List[T]): Unit
  60. def swap(list: List[_], i: Int, j: Int): Unit
  61. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  62. def synchronizedCollection[T](c: Collection[T]): Collection[T]
  63. def synchronizedList[T](list: List[T]): List[T]
  64. def synchronizedMap[K, V](m: Map[K, V]): Map[K, V]
  65. def synchronizedSet[T](s: Set[T]): Set[T]
  66. def synchronizedSortedMap[K, V](m: SortedMap[K, V]): SortedMap[K, V]
  67. def synchronizedSortedSet[T](s: SortedSet[T]): SortedSet[T]
  68. def toString(): String
    Definition Classes
    AnyRef → Any
  69. def unmodifiableCollection[T](c: Collection[_ <: T]): Collection[T]
  70. def unmodifiableList[T](list: List[_ <: T]): List[T]
  71. def unmodifiableMap[K, V](m: Map[_ <: K, _ <: V]): Map[K, V]
  72. def unmodifiableSet[T](a: Set[_ <: T]): Set[T]
  73. def unmodifiableSortedMap[K, V](m: SortedMap[K, _ <: V]): SortedMap[K, V]
  74. def unmodifiableSortedSet[T](s: SortedSet[T]): SortedSet[T]
  75. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  76. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  77. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped