Class/Object

scala.tools.nsc.io

Jar

Related Docs: object Jar | package io

Permalink

class Jar extends Iterable[JarEntry]

Source
Jar.scala
Linear Supertypes
collection.Iterable[JarEntry], IterableLike[JarEntry, collection.Iterable[JarEntry]], Equals, GenIterable[JarEntry], GenIterableLike[JarEntry, collection.Iterable[JarEntry]], collection.Traversable[JarEntry], GenTraversable[JarEntry], GenericTraversableTemplate[JarEntry, collection.Iterable], TraversableLike[JarEntry, collection.Iterable[JarEntry]], GenTraversableLike[JarEntry, collection.Iterable[JarEntry]], Parallelizable[JarEntry, ParIterable[JarEntry]], collection.TraversableOnce[JarEntry], GenTraversableOnce[JarEntry], FilterMonadic[JarEntry, collection.Iterable[JarEntry]], HasNewBuilder[JarEntry, Iterable[java.util.jar.JarEntry] @scala.annotation.unchecked.uncheckedVariance], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Jar
  2. Iterable
  3. IterableLike
  4. Equals
  5. GenIterable
  6. GenIterableLike
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. AnyRef
  18. Any
Implicitly
  1. by MonadOps
  2. by CollectionsHaveToParArray
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Jar(path: String)

    Permalink
  2. new Jar(jfile: JFile)

    Permalink
  3. new Jar(file: File)

    Permalink

Type Members

  1. type Self = collection.Iterable[JarEntry]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

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

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

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

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to any2stringadd[Jar] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: JarEntry, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: JarEntry, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  6. def ++:[B >: JarEntry, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (Jar, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to ArrowAssoc[Jar] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def /:[B](z: B)(op: (B, JarEntry) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. def :\[B](z: B)(op: (JarEntry, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  11. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  12. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, JarEntry) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  16. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  17. def classPathElements: List[String]

    Permalink
  18. def classPathString: Option[String]

    Permalink

    The manifest-defined classpath String if available.

  19. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  20. def collect[B, That](pf: PartialFunction[JarEntry, B])(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  21. def collectFirst[B](pf: PartialFunction[JarEntry, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  22. def companion: GenericCompanion[collection.Iterable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  23. def copyToArray[B >: JarEntry](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  24. def copyToArray[B >: JarEntry](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: JarEntry](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def copyToBuffer[B >: JarEntry](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  27. def count(p: (JarEntry) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  28. def drop(n: Int): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  29. def dropRight(n: Int): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike
  30. def dropWhile(p: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  31. def ensuring(cond: (Jar) ⇒ Boolean, msg: ⇒ Any): Jar

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to Ensuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: (Jar) ⇒ Boolean): Jar

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to Ensuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: Boolean, msg: ⇒ Any): Jar

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to Ensuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean): Jar

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to Ensuring[Jar] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

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

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  37. def exists(p: (JarEntry) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  38. def filter(p: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  41. def find(p: (JarEntry) ⇒ Boolean): Option[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def flatMap[B, That](f: (JarEntry) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: (JarEntry) ⇒ GenTraversableOnce[B]): collection.Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: JarEntry](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, JarEntry) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: (JarEntry, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  47. def forall(p: (JarEntry) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def foreach[U](f: (JarEntry) ⇒ U): Unit

    Permalink
    Definition Classes
    Jar → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  49. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to StringFormat[Jar] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  50. def genericBuilder[B]: Builder[B, collection.Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  51. final def getClass(): Class[_]

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  52. def groupBy[K](f: (JarEntry) ⇒ K): Map[K, collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  53. def grouped(size: Int): collection.Iterator[collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    IterableLike
  54. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  55. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  56. def head: JarEntry

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  57. def headOption: Option[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  58. def init: collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def inits: collection.Iterator[collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    TraversableLike
  60. def isEmpty: Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  61. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  62. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  63. def iterator: Iterator[JarEntry]

    Permalink
    Definition Classes
    Jar → IterableLike → GenIterableLike
  64. def jarWriter(mainAttrs: (Name, String)*): JarWriter

    Permalink
  65. def last: JarEntry

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  66. def lastOption: Option[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def mainClass: Option[String]

    Permalink
  68. lazy val manifest: Option[Manifest]

    Permalink
  69. def map[B, That](f: (JarEntry) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  70. def max[B >: JarEntry](implicit cmp: Ordering[B]): JarEntry

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def maxBy[B](f: (JarEntry) ⇒ B)(implicit cmp: Ordering[B]): JarEntry

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def min[B >: JarEntry](implicit cmp: Ordering[B]): JarEntry

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def minBy[B](f: (JarEntry) ⇒ B)(implicit cmp: Ordering[B]): JarEntry

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  78. def newBuilder: Builder[JarEntry, collection.Iterable[JarEntry]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  79. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  81. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  82. def par: ParIterable[JarEntry]

    Permalink
    Definition Classes
    Parallelizable
  83. def parCombiner: Combiner[JarEntry, ParIterable[JarEntry]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  84. def partition(p: (JarEntry) ⇒ Boolean): (collection.Iterable[JarEntry], collection.Iterable[JarEntry])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  85. def product[B >: JarEntry](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduce[A1 >: JarEntry](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def reduceLeft[B >: JarEntry](op: (B, JarEntry) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  88. def reduceLeftOption[B >: JarEntry](op: (B, JarEntry) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceOption[A1 >: JarEntry](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def reduceRight[B >: JarEntry](op: (JarEntry, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  91. def reduceRightOption[B >: JarEntry](op: (JarEntry, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def repr: collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  93. def reversed: List[JarEntry]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  94. def sameElements[B >: JarEntry](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  95. def scan[B >: JarEntry, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  96. def scanLeft[B, That](z: B)(op: (B, JarEntry) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  97. def scanRight[B, That](z: B)(op: (JarEntry, B) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  98. def seq: collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  99. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def slice(from: Int, until: Int): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  101. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    IterableLike
  102. def sliding(size: Int): collection.Iterator[collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    IterableLike
  103. def span(p: (JarEntry) ⇒ Boolean): (collection.Iterable[JarEntry], collection.Iterable[JarEntry])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def splitAt(n: Int): (collection.Iterable[JarEntry], collection.Iterable[JarEntry])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  105. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def sum[B >: JarEntry](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  108. def tail: collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  109. def tails: collection.Iterator[collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    TraversableLike
  110. def take(n: Int): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  111. def takeRight(n: Int): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike
  112. def takeWhile(p: (JarEntry) ⇒ Boolean): collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  113. def thisCollection: collection.Iterable[JarEntry]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  114. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, JarEntry, Col[JarEntry]]): Col[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  115. def toArray[B >: JarEntry](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def toBuffer[B >: JarEntry]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. def toCollection(repr: collection.Iterable[JarEntry]): collection.Iterable[JarEntry]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  118. def toIndexedSeq: collection.immutable.IndexedSeq[JarEntry]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toIterable: collection.Iterable[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  120. def toIterator: collection.Iterator[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  121. def toList: List[JarEntry]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def toMap[T, U](implicit ev: <:<[JarEntry, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to CollectionsHaveToParArray[Jar, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (Jar) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  124. def toSeq: collection.Seq[JarEntry]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toSet[B >: JarEntry]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toStream: collection.immutable.Stream[JarEntry]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  127. def toString(): String

    Permalink

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    Definition Classes
    Jar → TraversableLike → AnyRef → Any
  128. def toTraversable: collection.Traversable[JarEntry]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  129. def toVector: Vector[JarEntry]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def transpose[B](implicit asTraversable: (JarEntry) ⇒ GenTraversableOnce[B]): collection.Iterable[collection.Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  131. def unzip[A1, A2](implicit asPair: (JarEntry) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  132. def unzip3[A1, A2, A3](implicit asTriple: (JarEntry) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  133. def view(from: Int, until: Int): IterableView[JarEntry, collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  134. def view: IterableView[JarEntry, collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  135. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  138. def withEntryStream[A](name: String)(f: (Option[InputStream]) ⇒ A): A

    Permalink

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

  139. def withFilter(p: (JarEntry) ⇒ Boolean): FilterMonadic[JarEntry, collection.Iterable[JarEntry]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  140. def withJarInput[T](f: (JarInputStream) ⇒ T): T

    Permalink
  141. def zip[A1 >: JarEntry, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  142. def zipAll[B, A1 >: JarEntry, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[collection.Iterable[JarEntry], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  143. def zipWithIndex[A1 >: JarEntry, That](implicit bf: CanBuildFrom[collection.Iterable[JarEntry], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  144. def [B](y: B): (Jar, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to ArrowAssoc[Jar] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: (JarEntry) ⇒ Boolean): collection.TraversableOnce[JarEntry]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to MonadOps[JarEntry] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[JarEntry]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: (JarEntry) ⇒ GenTraversableOnce[B]): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to MonadOps[JarEntry] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[JarEntry]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: (JarEntry) ⇒ B): collection.TraversableOnce[B]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to MonadOps[JarEntry] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[JarEntry]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: (JarEntry) ⇒ Boolean): collection.Iterator[JarEntry]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Jar to MonadOps[JarEntry] performed by method MonadOps in scala.collection.TraversableOnce.
    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: MonadOps[JarEntry]).withFilter(p)
    Definition Classes
    MonadOps

Inherited from collection.Iterable[JarEntry]

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

Inherited from Equals

Inherited from GenIterable[JarEntry]

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

Inherited from collection.Traversable[JarEntry]

Inherited from GenTraversable[JarEntry]

Inherited from GenericTraversableTemplate[JarEntry, collection.Iterable]

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

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

Inherited from Parallelizable[JarEntry, ParIterable[JarEntry]]

Inherited from collection.TraversableOnce[JarEntry]

Inherited from GenTraversableOnce[JarEntry]

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

Inherited from HasNewBuilder[JarEntry, Iterable[java.util.jar.JarEntry] @scala.annotation.unchecked.uncheckedVariance]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from Jar to MonadOps[JarEntry]

Inherited by implicit conversion CollectionsHaveToParArray from Jar to CollectionsHaveToParArray[Jar, T]

Inherited by implicit conversion any2stringadd from Jar to any2stringadd[Jar]

Inherited by implicit conversion StringFormat from Jar to StringFormat[Jar]

Inherited by implicit conversion Ensuring from Jar to Ensuring[Jar]

Inherited by implicit conversion ArrowAssoc from Jar to ArrowAssoc[Jar]

Inherited by implicit conversion alternateImplicit from Jar to ForceImplicitAmbiguity

Ungrouped