uk.co.bigbeeconsultants.http.response

InputStreamResponseBody

final class InputStreamResponseBody extends ResponseBody

Provides a body implementation that holds the HTTP server's input stream as obtained from the HttpURLConnection. This provides access to the underlying InputStream, with or without a filtering function to transform the text, Also, is can also easily be iterated over as a sequence of strings.

Alternatively, it can be converted into a uk.co.bigbeeconsultants.http.response.ByteBufferResponseBody (which is simpler to use) if the whole body is required as a block of bytes or a string.

It is not safe to share instances between threads.

The socket input stream *must* be closed by the calling code. This happens automatically when all the data has been consumed from the socket, but if it is necessary to give up immediately or part-way through, it is necessary to ensure that inputStream.close() is invoked (usually in a finally block).

Conversion toBufferedBody is another way to ensure the input stream gets closed.

Linear Supertypes
ResponseBody, Iterable[String], IterableLike[String, Iterable[String]], Equals, GenIterable[String], GenIterableLike[String, Iterable[String]], Traversable[String], GenTraversable[String], GenericTraversableTemplate[String, Iterable], TraversableLike[String, Iterable[String]], GenTraversableLike[String, Iterable[String]], Parallelizable[String, ParIterable[String]], TraversableOnce[String], GenTraversableOnce[String], FilterMonadic[String, Iterable[String]], HasNewBuilder[String, Iterable[String]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. InputStreamResponseBody
  2. ResponseBody
  3. Iterable
  4. IterableLike
  5. Equals
  6. GenIterable
  7. GenIterableLike
  8. Traversable
  9. GenTraversable
  10. GenericTraversableTemplate
  11. TraversableLike
  12. GenTraversableLike
  13. Parallelizable
  14. TraversableOnce
  15. GenTraversableOnce
  16. FilterMonadic
  17. HasNewBuilder
  18. AnyRef
  19. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InputStreamResponseBody(request: Request, status: Status, optionalContentType: Option[MediaType], headers: Headers, stream: InputStream)

    request

    if the content type is not initially known, the request URL may provide a hint based on the extension of the filename, if present.

    status

    the request parameter is ignored if the status is not 200-OK.

    optionalContentType

    the content type received from the webserver, if any.

    headers

    response headers received from the webserver; only the Content-Length is of interest.

    stream

    the input stream from the socket connected to the webserver.

Type Members

  1. type Self = Iterable[String]

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

    Definition Classes
    TraversableLike

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++[B >: String, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[String], B, That]): That

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

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

    Definition Classes
    TraversableLike
  7. def /:[B](z: B)(op: (B, String) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. def :\[B](z: B)(op: (String, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. final def ==(arg0: Any): Boolean

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

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

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def asBytes: Array[Byte]

    In the unbuffered state, this throws an illegal state exception.

    In the unbuffered state, this throws an illegal state exception. The actual content length is only known once the response body has been buffered. Therefore, use toBufferedBody.asBytes instead.

    Definition Classes
    InputStreamResponseBodyResponseBody
  16. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  17. def asString: String

    In the unbuffered state, this throws an illegal state exception.

    In the unbuffered state, this throws an illegal state exception. The actual content length is only known once the response body has been buffered. Therefore, use toBufferedBody.asString instead.

    Definition Classes
    InputStreamResponseBodyResponseBody
    Annotations
    @throws( classOf[MalformedInputException] )
  18. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  19. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def close(): Unit

    Closes the input stream that provides the data for this response.

    Closes the input stream that provides the data for this response. If the implementation buffers the body, the input stream will have been closed automatically.

    Definition Classes
    InputStreamResponseBodyResponseBody
    Annotations
    @throws( classOf[IOException] )
  21. def collect[B, That](pf: PartialFunction[String, B])(implicit bf: CanBuildFrom[Iterable[String], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  22. def collectFirst[B](pf: PartialFunction[String, B]): Option[B]

    Definition Classes
    TraversableOnce
  23. def companion: GenericCompanion[Iterable]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  24. def contentLength: Int

    In the unbuffered state, this throws an illegal state exception.

    In the unbuffered state, this throws an illegal state exception. The actual content length is only known once the response body has been buffered. Therefore, use toBufferedBody.contentLength instead.

    Definition Classes
    InputStreamResponseBodyResponseBody
  25. def contentType: MediaType

    Gets the content type and encoding of the response.

    Gets the content type and encoding of the response. In the unbuffered state, this may not have been supplied by the HTTP server so may not yet be known, in which case the default is "application/octet-stream".

    Definition Classes
    InputStreamResponseBodyResponseBody
  26. def copyToArray[B >: String](xs: Array[B], start: Int, len: Int): Unit

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def copyToBuffer[B >: String](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  30. def count(p: (String) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. def drop(n: Int): Iterable[String]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  32. def dropRight(n: Int): Iterable[String]

    Definition Classes
    IterableLike
  33. def dropWhile(p: (String) ⇒ Boolean): Iterable[String]

    Definition Classes
    TraversableLike → GenTraversableLike
  34. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  36. def exists(p: (String) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  37. def filter(p: (String) ⇒ Boolean): Iterable[String]

    Definition Classes
    TraversableLike → GenTraversableLike
  38. def filterNot(p: (String) ⇒ Boolean): Iterable[String]

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. def find(p: (String) ⇒ Boolean): Option[String]

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

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  42. def flatten[B](implicit asTraversable: (String) ⇒ GenTraversableOnce[B]): Iterable[B]

    Definition Classes
    GenericTraversableTemplate
  43. def fold[A1 >: String](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def foldLeft[B](z: B)(op: (B, String) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldRight[B](z: B)(op: (String, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  46. def forall(p: (String) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  47. def foreach[U](f: (String) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  48. def genericBuilder[B]: Builder[B, Iterable[B]]

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

    Definition Classes
    AnyRef → Any
  50. def groupBy[K](f: (String) ⇒ K): Map[K, Iterable[String]]

    Definition Classes
    TraversableLike → GenTraversableLike
  51. def grouped(size: Int): Iterator[Iterable[String]]

    Definition Classes
    IterableLike
  52. def hasDefiniteSize: Boolean

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

    Definition Classes
    AnyRef → Any
  54. def head: String

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  55. def headOption: Option[String]

    Definition Classes
    TraversableLike → GenTraversableLike
  56. def init: Iterable[String]

    Definition Classes
    TraversableLike → GenTraversableLike
  57. def inits: Iterator[Iterable[String]]

    Definition Classes
    TraversableLike
  58. def inputStream: InputStream

    Gets the HTTP response input stream.

    Gets the HTTP response input stream. If you read from this stream, it would be unwise later to buffer the body using toBufferedBody, because only the remainder would get buffered. Also, once a buffered body has been obtained, this method must not be used (an exception will be thrown if it is attempted).

    returns

    the proxied input stream

    Definition Classes
    InputStreamResponseBodyResponseBody
  59. final def isBuffered: Boolean

    Tests whether the implementation has buffered the whole response body.

    Tests whether the implementation has buffered the whole response body. If this returns false, toBufferedBody provides an easy route to accumulate the entire body in a buffer.

    Definition Classes
    ResponseBody
  60. def isEmpty: Boolean

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

    Definition Classes
    Any
  62. final def isTextual: Boolean

    Tests whether this response body can be represented as text, or whether the data is binary.

    Tests whether this response body can be represented as text, or whether the data is binary.

    Definition Classes
    ResponseBody
  63. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  64. def isUnbuffered: Boolean

    Tests whether the content has been buffered yet.

    Tests whether the content has been buffered yet.

    Definition Classes
    InputStreamResponseBodyResponseBody
  65. def iterator: Iterator[String]

    Gets the body as a string split into lines of text, if possible.

    Gets the body as a string split into lines of text, if possible. If the data is binary, this method always returns an empty iterator.

    If the content is textual, this method will throw an illegal state exception if toBufferedBody has already been used.

    Definition Classes
    InputStreamResponseBodyResponseBody → IterableLike → GenIterableLike
    Annotations
    @throws( classOf[IOException] )
  66. def last: String

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

    Definition Classes
    TraversableLike → GenTraversableLike
  68. def map[B, That](f: (String) ⇒ B)(implicit bf: CanBuildFrom[Iterable[String], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  69. def max[B >: String](implicit cmp: Ordering[B]): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. def maxBy[B](f: (String) ⇒ B)(implicit cmp: Ordering[B]): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def min[B >: String](implicit cmp: Ordering[B]): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def minBy[B](f: (String) ⇒ B)(implicit cmp: Ordering[B]): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def mkString: String

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

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

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

    Definition Classes
    AnyRef
  77. def newBuilder: Builder[String, Iterable[String]]

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

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

    Definition Classes
    AnyRef
  80. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  81. def par: ParIterable[String]

    Definition Classes
    Parallelizable
  82. def parCombiner: Combiner[String, ParIterable[String]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  83. def partition(p: (String) ⇒ Boolean): (Iterable[String], Iterable[String])

    Definition Classes
    TraversableLike → GenTraversableLike
  84. def product[B >: String](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def reduce[A1 >: String](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def reduceLeft[B >: String](op: (B, String) ⇒ B): B

    Definition Classes
    TraversableOnce
  87. def reduceLeftOption[B >: String](op: (B, String) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduceOption[A1 >: String](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceRight[B >: String](op: (String, B) ⇒ B): B

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def repr: Iterable[String]

    Definition Classes
    TraversableLike → GenTraversableLike
  92. def reversed: List[String]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  93. def sameElements[B >: String](that: GenIterable[B]): Boolean

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

    Definition Classes
    TraversableLike → GenTraversableLike
  95. def scanLeft[B, That](z: B)(op: (B, String) ⇒ B)(implicit bf: CanBuildFrom[Iterable[String], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  96. def scanRight[B, That](z: B)(op: (String, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[String], B, That]): That

    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.

  97. def seq: Iterable[String]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def slice(from: Int, until: Int): Iterable[String]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  100. def sliding(size: Int, step: Int): Iterator[Iterable[String]]

    Definition Classes
    IterableLike
  101. def sliding(size: Int): Iterator[Iterable[String]]

    Definition Classes
    IterableLike
  102. def span(p: (String) ⇒ Boolean): (Iterable[String], Iterable[String])

    Definition Classes
    TraversableLike → GenTraversableLike
  103. def splitAt(n: Int): (Iterable[String], Iterable[String])

    Definition Classes
    TraversableLike → GenTraversableLike
  104. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  105. def sum[B >: String](implicit num: Numeric[B]): B

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

    Definition Classes
    AnyRef
  107. def tail: Iterable[String]

    Definition Classes
    TraversableLike → GenTraversableLike
  108. def tails: Iterator[Iterable[String]]

    Definition Classes
    TraversableLike
  109. def take(n: Int): Iterable[String]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  110. def takeRight(n: Int): Iterable[String]

    Definition Classes
    IterableLike
  111. def takeWhile(p: (String) ⇒ Boolean): Iterable[String]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  112. def thisCollection: Iterable[String]

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

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def toBuffer[B >: String]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def toBufferedBody: ResponseBody

    Gets the response body in a byte buffer.

    Gets the response body in a byte buffer. This consumes the data from the input stream, which cannot subsequently be used here therefore. Any data that has already been consumed will not be included in the resulting buffer.

    returns

    the response data stored in a buffer

    Definition Classes
    InputStreamResponseBodyResponseBody
  117. def toCollection(repr: Iterable[String]): Iterable[String]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  118. def toIndexedSeq: IndexedSeq[String]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toIterable: Iterable[String]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  120. def toIterator: Iterator[String]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  121. def toList: List[String]

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

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def toSeq: Seq[String]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toSet[B >: String]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toStream: Stream[String]

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

    Gets the response body as a string for diagnostic purposes.

    Gets the response body as a string for diagnostic purposes.

    Definition Classes
    InputStreamResponseBodyResponseBody → TraversableLike → AnyRef → Any
  127. def toStringBody: ResponseBody

    Gets the response body in a string buffer.

    Gets the response body in a string buffer. This consumes the data from the input stream, which cannot subsequently be used here therefore. Any data that has already been consumed will not be included in the resulting buffer.

    returns

    the response data stored in a buffer

    Definition Classes
    InputStreamResponseBodyResponseBody
  128. def toTraversable: Traversable[String]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  129. def toVector: Vector[String]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def transformedStream(lineFilter: (String) ⇒ String): InputStream

    Gets a proxy for the HTTP response input stream in which each line is transformed using a specified function.

    Gets a proxy for the HTTP response input stream in which each line is transformed using a specified function. Be careful about the potential impact on performance of your filter on line-by-line processing; you may need to measure this approach in comparison with other alternatives.

    lineFilter

    the function to be applied to each line.

    returns

    the proxied input stream

  131. def transpose[B](implicit asTraversable: (String) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  132. def unzip[A1, A2](implicit asPair: (String) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Definition Classes
    GenericTraversableTemplate
  133. def unzip3[A1, A2, A3](implicit asTriple: (String) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Definition Classes
    GenericTraversableTemplate
  134. def view(from: Int, until: Int): IterableView[String, Iterable[String]]

    Definition Classes
    IterableLike → TraversableLike
  135. def view: IterableView[String, Iterable[String]]

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  139. def withFilter(p: (String) ⇒ Boolean): FilterMonadic[String, Iterable[String]]

    Definition Classes
    TraversableLike → FilterMonadic
  140. def zip[A1 >: String, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[String], (A1, B), That]): That

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

    Definition Classes
    IterableLike → GenIterableLike
  142. def zipWithIndex[A1 >: String, That](implicit bf: CanBuildFrom[Iterable[String], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike

Deprecated Value Members

  1. def /:\[A1 >: String](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

  2. def rawStream: InputStream

    Annotations
    @deprecated
    Deprecated

    (Since version ) Use inputStream

Inherited from ResponseBody

Inherited from Iterable[String]

Inherited from IterableLike[String, Iterable[String]]

Inherited from Equals

Inherited from GenIterable[String]

Inherited from GenIterableLike[String, Iterable[String]]

Inherited from Traversable[String]

Inherited from GenTraversable[String]

Inherited from GenericTraversableTemplate[String, Iterable]

Inherited from TraversableLike[String, Iterable[String]]

Inherited from GenTraversableLike[String, Iterable[String]]

Inherited from Parallelizable[String, ParIterable[String]]

Inherited from TraversableOnce[String]

Inherited from GenTraversableOnce[String]

Inherited from FilterMonadic[String, Iterable[String]]

Inherited from HasNewBuilder[String, Iterable[String]]

Inherited from AnyRef

Inherited from Any

Ungrouped