Trait/Object

com.avsystem.commons.jiop

JCollectionUtils

Related Docs: object JCollectionUtils | package jiop

Permalink

trait JCollectionUtils extends JCanBuildFroms

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JCollectionUtils
  2. JCanBuildFroms
  3. JMapCanBuildFroms
  4. JLinkedHashMapCBF
  5. JSortedMapCBF
  6. JCollectionCanBuildFroms
  7. JIterableCBF
  8. JLinkedListCBF
  9. JSetCBF
  10. JLinkedHashSetCBF
  11. JSortedSetCBF
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type JArrayDeque[E] = ArrayDeque[E]

    Permalink
  2. type JArrayList[T] = ArrayList[T]

    Permalink
  3. type JCollection[T] = Collection[T]

    Permalink
  4. abstract class JCollectionCreator[C[T] <: JCollection[T]] extends AnyRef

    Permalink
  5. type JDeque[E] = Deque[E]

    Permalink
  6. type JEnumMap[K <: Enum[K], V] = EnumMap[K, V]

    Permalink
  7. type JEnumSet[E <: Enum[E]] = EnumSet[E]

    Permalink
  8. type JHashMap[K, V] = HashMap[K, V]

    Permalink
  9. type JHashSet[T] = HashSet[T]

    Permalink
  10. type JIterable[T] = Iterable[T]

    Permalink
  11. type JIterator[T] = Iterator[T]

    Permalink
  12. type JLinkedHashMap[K, V] = LinkedHashMap[K, V]

    Permalink
  13. type JLinkedHashSet[T] = LinkedHashSet[T]

    Permalink
  14. type JLinkedList[T] = LinkedList[T]

    Permalink
  15. type JList[T] = List[T]

    Permalink
  16. abstract class JListCreator[C[T] <: JList[T]] extends JCollectionCreator[C]

    Permalink
  17. type JListIterator[T] = ListIterator[T]

    Permalink
  18. type JMap[K, V] = Map[K, V]

    Permalink
  19. abstract class JMapCreator[M[K, V] <: JMap[K, V]] extends AnyRef

    Permalink
  20. type JNavigableMap[K, V] = NavigableMap[K, V]

    Permalink
  21. type JNavigableSet[T] = NavigableSet[T]

    Permalink
  22. type JQueue[E] = Queue[E]

    Permalink
  23. type JSet[T] = Set[T]

    Permalink
  24. type JSortedMap[K, V] = SortedMap[K, V]

    Permalink
  25. abstract class JSortedMapCreator[M[K, V] <: JSortedMap[K, V]] extends AnyRef

    Permalink
  26. type JSortedSet[T] = SortedSet[T]

    Permalink
  27. abstract class JSortedSetCreator[C[T] <: JSortedSet[T]] extends AnyRef

    Permalink
  28. type JTreeMap[K, V] = TreeMap[K, V]

    Permalink
  29. type JTreeSet[T] = TreeSet[T]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object JArrayList extends JListCreator[JArrayList] with Serializable

    Permalink
  5. object JCollection extends JCollectionCreator[JCollection]

    Permalink
  6. object JHashMap extends JMapCreator[JHashMap] with Serializable

    Permalink
  7. object JHashSet extends JCollectionCreator[JHashSet] with Serializable

    Permalink
  8. object JIterable

    Permalink
  9. object JLinkedHashMap extends JMapCreator[JLinkedHashMap] with Serializable

    Permalink
  10. object JLinkedHashSet extends JCollectionCreator[JLinkedHashSet] with Serializable

    Permalink
  11. object JLinkedList extends JListCreator[JLinkedList] with Serializable

    Permalink
  12. object JList extends JListCreator[JList]

    Permalink
  13. object JMap extends JMapCreator[JMap]

    Permalink
  14. object JNavigableMap extends JSortedMapCreator[JNavigableMap]

    Permalink
  15. object JNavigableSet extends JSortedSetCreator[JNavigableSet]

    Permalink
  16. object JSet extends JCollectionCreator[JSet]

    Permalink
  17. object JSortedMap extends JSortedMapCreator[JSortedMap]

    Permalink
  18. object JSortedSet extends JSortedSetCreator[JSortedSet]

    Permalink
  19. object JTreeMap extends JSortedMapCreator[JTreeMap] with Serializable

    Permalink
  20. object JTreeSet extends JSortedSetCreator[JTreeSet] with Serializable

    Permalink
  21. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  22. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. implicit def jArrayListCBF[A]: JCollectionCBF[A, commons.JArrayList[A]]

    Permalink
    Definition Classes
    JIterableCBF
  30. implicit def jHashMapCBF[K, V]: JMapCBF[K, V, commons.JHashMap[K, V]]

    Permalink
    Definition Classes
    JMapCanBuildFroms
  31. implicit def jHashSetCBF[A]: JCollectionCBF[A, commons.JHashSet[A]]

    Permalink
    Definition Classes
    JSetCBF
  32. implicit def jLinkedHashMapCBF[K, V]: JMapCBF[K, V, commons.JLinkedHashMap[K, V]]

    Permalink
    Definition Classes
    JLinkedHashMapCBF
  33. implicit def jLinkedHashSetCBF[A]: JCollectionCBF[A, commons.JLinkedHashSet[A]]

    Permalink
    Definition Classes
    JLinkedHashSetCBF
  34. implicit def jLinkedListCBF[A]: JCollectionCBF[A, commons.JLinkedList[A]]

    Permalink
    Definition Classes
    JLinkedListCBF
  35. implicit def jTreeMapCBF[K, V](implicit arg0: Ordering[K]): JMapCBF[K, V, commons.JTreeMap[K, V]]

    Permalink
    Definition Classes
    JSortedMapCBF
  36. implicit def jTreeSetCBF[A](implicit arg0: Ordering[A]): JCollectionCBF[A, commons.JTreeSet[A]]

    Permalink
    Definition Classes
    JSortedSetCBF
  37. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  38. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  39. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  40. implicit def pairTraversableOps[A, B](coll: TraversableOnce[(A, B)]): pairTraversableOps[A, B]

    Permalink
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  43. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from JCanBuildFroms

Inherited from JMapCanBuildFroms

Inherited from JLinkedHashMapCBF

Inherited from JSortedMapCBF

Inherited from JCollectionCanBuildFroms

Inherited from JIterableCBF

Inherited from JLinkedListCBF

Inherited from JSetCBF

Inherited from JLinkedHashSetCBF

Inherited from JSortedSetCBF

Inherited from AnyRef

Inherited from Any

Ungrouped