Packages

class Jar extends AbstractIterable[JarEntry]

Source
Jar.scala
Linear Supertypes
AbstractIterable[JarEntry], collection.Iterable[JarEntry], Serializable, java.io.Serializable, IterableOps[JarEntry, collection.Iterable, collection.Iterable[JarEntry]], IterableOnceOps[JarEntry, collection.Iterable, collection.Iterable[JarEntry]], collection.IterableOnce[JarEntry], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Jar
  2. AbstractIterable
  3. Iterable
  4. Serializable
  5. Serializable
  6. IterableOps
  7. IterableOnceOps
  8. IterableOnce
  9. AnyRef
  10. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Jar(path: String)
  2. new Jar(jfile: JFile)
  3. new Jar(file: File)

Type Members

  1. type IterableCC[X] = collection.Iterable[X]
    Attributes
    protected
    Definition Classes
    IterableOps

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Jar toany2stringadd[Jar] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: JarEntry](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (Jar, B)
    Implicit
    This member is added by an implicit conversion from Jar toArrowAssoc[Jar] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  12. def classPathElements: List[String]
  13. def classPathString: Option[String]

    The manifest-defined classpath String if available.

  14. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  15. def coll: Jar.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  16. def collect[B](pf: PartialFunction[JarEntry, B]): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  17. def collectFirst[B](pf: PartialFunction[JarEntry, B]): Option[B]
    Definition Classes
    IterableOnceOps
  18. def concat[B >: JarEntry](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
  19. def copyToArray[B >: JarEntry](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  20. def copyToArray[B >: JarEntry](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  21. def copyToArray[B >: JarEntry](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  22. def corresponds[B](that: collection.IterableOnce[B])(p: (JarEntry, B) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  23. def count(p: (JarEntry) ⇒ Boolean): Int
    Definition Classes
    IterableOnceOps
  24. def drop(n: Int): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  25. def dropRight(n: Int): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps
  26. def dropWhile(p: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  27. def ensuring(cond: (Jar) ⇒ Boolean, msg: ⇒ Any): Jar
    Implicit
    This member is added by an implicit conversion from Jar toEnsuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (Jar) ⇒ Boolean): Jar
    Implicit
    This member is added by an implicit conversion from Jar toEnsuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: ⇒ Any): Jar
    Implicit
    This member is added by an implicit conversion from Jar toEnsuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): Jar
    Implicit
    This member is added by an implicit conversion from Jar toEnsuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  33. def exists(p: (JarEntry) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  34. def filter(pred: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  35. def filterNot(pred: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  36. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  37. def find(p: (JarEntry) ⇒ Boolean): Option[JarEntry]
    Definition Classes
    IterableOnceOps
  38. def flatMap[B](f: (JarEntry) ⇒ collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def flatten[B](implicit asIterable: (JarEntry) ⇒ collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  40. def foldLeft[B](z: B)(op: (B, JarEntry) ⇒ B): B
    Definition Classes
    IterableOnceOps
  41. def foldRight[B](z: B)(op: (JarEntry, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  42. def forall(p: (JarEntry) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def foreach[U](f: (JarEntry) ⇒ U): Unit
    Definition Classes
    Jar → IterableOnceOps
  44. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Jar toStringFormat[Jar] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  45. def fromSpecific(coll: collection.IterableOnce[JarEntry]): IterableCC[JarEntry]
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  46. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def groupBy[K](f: (JarEntry) ⇒ K): Map[K, collection.Iterable[JarEntry]]
    Definition Classes
    IterableOps
  48. def groupMap[K, B](key: (JarEntry) ⇒ K)(f: (JarEntry) ⇒ B): Map[K, collection.Iterable[B]]
    Definition Classes
    IterableOps
  49. def groupMapReduce[K, B](key: (JarEntry) ⇒ K)(f: (JarEntry) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Definition Classes
    IterableOps
  50. def grouped(size: Int): collection.Iterator[collection.Iterable[JarEntry]]
    Definition Classes
    IterableOps
  51. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  52. def head: JarEntry
    Definition Classes
    IterableOps
  53. def headOption: Option[JarEntry]
    Definition Classes
    IterableOps
  54. def init: collection.Iterable[JarEntry]
    Definition Classes
    IterableOps
  55. def inits: collection.Iterator[collection.Iterable[JarEntry]]
    Definition Classes
    IterableOps
  56. def isEmpty: Boolean
    Definition Classes
    Jar → IterableOnceOps
  57. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  58. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  59. def iterableFactory: IterableFactory[IterableCC]
    Definition Classes
    Iterable → IterableOps
  60. def iterator: Iterator[JarEntry]
    Definition Classes
    Jar → IterableOnce
  61. def jarWriter(mainAttrs: (Name, String)*): JarWriter
  62. def knownSize: Int
    Definition Classes
    IterableOnceOps
  63. def last: JarEntry
    Definition Classes
    IterableOps
  64. def lastOption: Option[JarEntry]
    Definition Classes
    IterableOps
  65. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[JarEntry, B, Jar.this.type]
    Definition Classes
    Iterable
  66. def mainClass: Option[String]
  67. lazy val manifest: Option[Manifest]
  68. def map[B](f: (JarEntry) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  69. def max[B >: JarEntry](implicit ord: math.Ordering[B]): JarEntry
    Definition Classes
    IterableOnceOps
  70. def maxBy[B](f: (JarEntry) ⇒ B)(implicit cmp: math.Ordering[B]): JarEntry
    Definition Classes
    IterableOnceOps
  71. def maxByOption[B](f: (JarEntry) ⇒ B)(implicit cmp: math.Ordering[B]): Option[JarEntry]
    Definition Classes
    IterableOnceOps
  72. def maxOption[B >: JarEntry](implicit ord: math.Ordering[B]): Option[JarEntry]
    Definition Classes
    IterableOnceOps
  73. def min[B >: JarEntry](implicit ord: math.Ordering[B]): JarEntry
    Definition Classes
    IterableOnceOps
  74. def minBy[B](f: (JarEntry) ⇒ B)(implicit cmp: math.Ordering[B]): JarEntry
    Definition Classes
    IterableOnceOps
  75. def minByOption[B](f: (JarEntry) ⇒ B)(implicit cmp: math.Ordering[B]): Option[JarEntry]
    Definition Classes
    IterableOnceOps
  76. def minOption[B >: JarEntry](implicit ord: math.Ordering[B]): Option[JarEntry]
    Definition Classes
    IterableOnceOps
  77. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  78. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  79. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  80. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  81. def newSpecificBuilder: Builder[JarEntry, IterableCC[JarEntry]]
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  82. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  83. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  84. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  85. def partition(p: (JarEntry) ⇒ Boolean): (collection.Iterable[JarEntry], collection.Iterable[JarEntry])
    Definition Classes
    IterableOps
  86. def partitionWith[A1, A2](f: (JarEntry) ⇒ Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Definition Classes
    IterableOps
  87. def product[B >: JarEntry](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  88. def reduce[B >: JarEntry](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  89. def reduceLeft[B >: JarEntry](op: (B, JarEntry) ⇒ B): B
    Definition Classes
    IterableOnceOps
  90. def reduceLeftOption[B >: JarEntry](op: (B, JarEntry) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  91. def reduceOption[B >: JarEntry](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  92. def reduceRight[B >: JarEntry](op: (JarEntry, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  93. def reduceRightOption[B >: JarEntry](op: (JarEntry, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  94. def reversed: collection.Iterable[JarEntry]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  95. def scanLeft[B](z: B)(op: (B, JarEntry) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  96. def scanRight[B](z: B)(op: (JarEntry, B) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps
  97. def size: Int
    Definition Classes
    IterableOnceOps
  98. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  99. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  100. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  101. def slice(from: Int, until: Int): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  102. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[JarEntry]]
    Definition Classes
    IterableOps
  103. def sliding(size: Int): collection.Iterator[collection.Iterable[JarEntry]]
    Definition Classes
    IterableOps
  104. def span(p: (JarEntry) ⇒ Boolean): (collection.Iterable[JarEntry], collection.Iterable[JarEntry])
    Definition Classes
    IterableOps → IterableOnceOps
  105. def splitAt(n: Int): (collection.Iterable[JarEntry], collection.Iterable[JarEntry])
    Definition Classes
    IterableOps
  106. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding("Override className instead", "2.13.0")
  107. def sum[B >: JarEntry](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  108. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  109. def tail: collection.Iterable[JarEntry]
    Definition Classes
    IterableOps
  110. def tails: collection.Iterator[collection.Iterable[JarEntry]]
    Definition Classes
    IterableOps
  111. def take(n: Int): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  112. def takeRight(n: Int): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps
  113. def takeWhile(p: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]
    Definition Classes
    IterableOps → IterableOnceOps
  114. def to[C1](factory: Factory[JarEntry, C1]): C1
    Definition Classes
    IterableOnceOps
  115. def toArray[B >: JarEntry](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  116. final def toBuffer[B >: JarEntry]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  117. def toIndexedSeq: collection.immutable.IndexedSeq[JarEntry]
    Definition Classes
    IterableOnceOps
  118. final def toIterable: Jar.this.type
    Definition Classes
    Iterable → IterableOps
  119. def toList: collection.immutable.List[JarEntry]
    Definition Classes
    IterableOnceOps
  120. def toMap[K, V](implicit ev: <:<[JarEntry, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  121. def toSeq: collection.immutable.Seq[JarEntry]
    Definition Classes
    IterableOnceOps
  122. def toSet[B >: JarEntry]: Set[B]
    Definition Classes
    IterableOnceOps
  123. def toString(): String
    Definition Classes
    Jar → Iterable → AnyRef → Any
  124. def toVector: collection.immutable.Vector[JarEntry]
    Definition Classes
    IterableOnceOps
  125. def transpose[B](implicit asIterable: (JarEntry) ⇒ collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Definition Classes
    IterableOps
  126. def unzip[A1, A2](implicit asPair: (JarEntry) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Definition Classes
    IterableOps
  127. def unzip3[A1, A2, A3](implicit asTriple: (JarEntry) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Definition Classes
    IterableOps
  128. def view: View[JarEntry]
    Definition Classes
    IterableOps
  129. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  130. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  131. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  132. def withEntryStream[A](name: String)(f: (Option[InputStream]) ⇒ A): A

    Invoke f with input for named jar entry (or None).

  133. def withFilter(p: (JarEntry) ⇒ Boolean): WithFilter[JarEntry, collection.Iterable]
    Definition Classes
    IterableOps
  134. def withJarInput[T](f: (JarInputStream) ⇒ T): T
  135. def writeReplace(): AnyRef
    Attributes
    protected[this]
    Definition Classes
    Iterable
  136. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(JarEntry, B)]
    Definition Classes
    IterableOps
  137. def zipAll[A1 >: JarEntry, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Definition Classes
    IterableOps
  138. def zipWithIndex: collection.Iterable[(JarEntry, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  139. def [B](y: B): (Jar, B)
    Implicit
    This member is added by an implicit conversion from Jar toArrowAssoc[Jar] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def ++:[B >: JarEntry](that: collection.IterableOnce[B]): IterableCC[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use xs ++ ys instead of ys ++: xs for xs of type Iterable

  2. def /:[B](z: B)(op: (B, JarEntry) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  3. final def /:[B](z: B)(op: (B, JarEntry) ⇒ B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (JarEntry, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  5. final def :\[B](z: B)(op: (JarEntry, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  6. def aggregate[B](z: ⇒ B)(seqop: (B, JarEntry) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  7. def collectFirst[B](f: PartialFunction[JarEntry, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  8. def companion: IterableFactory[IterableCC]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[JarEntry]): Unit
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  10. final def copyToBuffer[B >: JarEntry](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  11. def count(f: (JarEntry) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  12. def exists(f: (JarEntry) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  13. def filter(f: (JarEntry) ⇒ Boolean): collection.Iterator[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  14. def find(p: (JarEntry) ⇒ Boolean): Option[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  15. def flatMap[B](f: (JarEntry) ⇒ collection.IterableOnce[B]): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  16. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  17. def fold[A1 >: JarEntry](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use foldLeft instead

  18. def foldLeft[B](z: B)(op: (B, JarEntry) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  19. def foldRight[B](z: B)(op: (JarEntry, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  20. def forall(f: (JarEntry) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  21. def foreach[U](f: (JarEntry) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  22. final def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  23. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  24. def map[B](f: (JarEntry) ⇒ B): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  25. def max(implicit ord: math.Ordering[JarEntry]): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  26. def maxBy[B](f: (JarEntry) ⇒ B)(implicit cmp: math.Ordering[B]): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  27. def min(implicit ord: math.Ordering[JarEntry]): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  28. def minBy[B](f: (JarEntry) ⇒ B)(implicit cmp: math.Ordering[B]): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  29. def mkString: String
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  30. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  33. def product(implicit num: math.Numeric[JarEntry]): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  34. def reduce(f: (JarEntry, JarEntry) ⇒ JarEntry): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  35. def reduceLeft(f: (JarEntry, JarEntry) ⇒ JarEntry): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  36. def reduceLeftOption(f: (JarEntry, JarEntry) ⇒ JarEntry): Option[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  37. def reduceOption(f: (JarEntry, JarEntry) ⇒ JarEntry): Option[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  38. def reduceRight(f: (JarEntry, JarEntry) ⇒ JarEntry): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  39. def reduceRightOption(f: (JarEntry, JarEntry) ⇒ JarEntry): Option[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  40. final def repr: collection.Iterable[JarEntry]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  41. def sameElements[B >: A](that: collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  42. def scan[B >: JarEntry](z: B)(op: (B, B) ⇒ B): collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use scanLeft instead

  43. def seq: Jar.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  44. def size: Int
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  45. def sum(implicit num: math.Numeric[JarEntry]): JarEntry
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  46. def to[C1](factory: Factory[JarEntry, C1]): C1
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  47. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  48. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  49. def toIndexedSeq: collection.IndexedSeq[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  50. final def toIterable: collection.Iterable[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  51. def toIterator: collection.Iterator[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  52. final def toIterator: collection.Iterator[JarEntry]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  53. def toList: collection.immutable.List[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  54. def toMap[K, V](implicit ev: <:<[JarEntry, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  55. def toSeq: collection.immutable.Seq[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  56. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  57. def toStream: collection.immutable.Stream[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  58. final def toStream: collection.immutable.Stream[JarEntry]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  59. final def toTraversable: collection.Traversable[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  60. final def toTraversable: collection.Traversable[JarEntry]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  61. def toVector: collection.immutable.Vector[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  62. final def view(from: Int, until: Int): View[JarEntry]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  63. def withFilter(f: (JarEntry) ⇒ Boolean): collection.Iterator[JarEntry]
    Implicit
    This member is added by an implicit conversion from Jar toIterableOnceExtensionMethods[JarEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jar: IterableOnceExtensionMethods[JarEntry]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

Inherited from AbstractIterable[JarEntry]

Inherited from collection.Iterable[JarEntry]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from IterableOps[JarEntry, collection.Iterable, collection.Iterable[JarEntry]]

Inherited from IterableOnceOps[JarEntry, collection.Iterable, collection.Iterable[JarEntry]]

Inherited from collection.IterableOnce[JarEntry]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromJar to IterableOnceExtensionMethods[JarEntry]

Inherited by implicit conversion any2stringadd fromJar to any2stringadd[Jar]

Inherited by implicit conversion StringFormat fromJar to StringFormat[Jar]

Inherited by implicit conversion Ensuring fromJar to Ensuring[Jar]

Inherited by implicit conversion ArrowAssoc fromJar to ArrowAssoc[Jar]

Ungrouped