Trait

scales.xml.parser.pull

XmlPull

Related Doc: package pull

Permalink

trait XmlPull extends Iterator[xml.PullType] with DocLike

Basis for xmlpulls, an Iterator[PullType]

Linear Supertypes
DocLike, Iterator[xml.PullType], TraversableOnce[xml.PullType], GenTraversableOnce[xml.PullType], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XmlPull
  2. DocLike
  3. Iterator
  4. TraversableOnce
  5. GenTraversableOnce
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]

    Permalink
    Definition Classes
    Iterator
  2. abstract type Token <: OptimisationToken

    Permalink

Abstract Value Members

  1. abstract val parser: XMLStreamReader

    Permalink
    Attributes
    protected[scales.xml]
  2. abstract val resourceCloser: () ⇒ Unit

    Permalink
    Attributes
    protected[scales.xml]
  3. abstract val strategy: MemoryOptimisationStrategy[Token]

    Permalink

    Why is this on a pull parser? Simple answer is by default it costs little, and by selection the user can optimise whole streams at an early and central place.

    Why is this on a pull parser? Simple answer is by default it costs little, and by selection the user can optimise whole streams at an early and central place. Optimising the stream in onQNames or another iteratee or in user code seems to go against the definition of a good design.

    Attributes
    protected[scales.xml]
  4. abstract val token: Token

    Permalink
    Attributes
    protected[scales.xml]

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[B >: xml.PullType](that: ⇒ GenTraversableOnce[B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  4. def /:[B](z: B)(op: (B, xml.PullType) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  5. def :\[B](z: B)(op: (xml.PullType, B) ⇒ B): B

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce
  10. def aggregate[B](z: ⇒ B)(seqop: (B, xml.PullType) ⇒ B, combop: (B, B) ⇒ B): B

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

    Permalink
    Definition Classes
    Any
  12. def buffered: BufferedIterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def collect[B](pf: PartialFunction[xml.PullType, B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) collect has changed. The previous behavior can be reproduced with toSeq.

  15. def collectFirst[B](pf: PartialFunction[xml.PullType, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  16. def contains(elem: Any): Boolean

    Permalink
    Definition Classes
    Iterator
  17. def copyToArray[B >: xml.PullType](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  18. def copyToArray[B >: xml.PullType](xs: Array[B]): Unit

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. def copyToBuffer[B >: xml.PullType](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  21. def corresponds[B](that: GenTraversableOnce[B])(p: (xml.PullType, B) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator
  22. def count(p: (xml.PullType) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  23. var depth: Int

    Permalink

    If the depth is -1 then we haven't hit an element yet, and start should keep pumping until that happens.

    If the depth is -1 then we haven't hit an element yet, and start should keep pumping until that happens.

    If the depth is -1 after processing the end root (haveRoot), then we keep pumping into the endMisc

    Attributes
    protected[scales.xml]
  24. def drop(n: Int): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  25. def dropWhile(p: (xml.PullType) ⇒ Boolean): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  26. def duplicate: (Iterator[xml.PullType], Iterator[xml.PullType])

    Permalink
    Definition Classes
    Iterator
  27. def end: EndMisc

    Permalink
    Definition Classes
    XmlPullDocLike
  28. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  30. def exists(p: (xml.PullType) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  31. def filter(p: (xml.PullType) ⇒ Boolean): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  32. def filterNot(p: (xml.PullType) ⇒ Boolean): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  33. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  34. def find(p: (xml.PullType) ⇒ Boolean): Option[xml.PullType]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  35. def flatMap[B](f: (xml.PullType) ⇒ GenTraversableOnce[B]): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  36. def fold[A1 >: xml.PullType](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  37. def foldLeft[B](z: B)(op: (B, xml.PullType) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def foldRight[B](z: B)(op: (xml.PullType, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  39. def forall(p: (xml.PullType) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  40. def foreach[U](f: (xml.PullType) ⇒ U): Unit

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  41. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  42. def grouped[B >: xml.PullType](size: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  43. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  44. def hasNext: Boolean

    Permalink
    Definition Classes
    XmlPull → Iterator
  45. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  46. var haveRoot: Boolean

    Permalink
    Attributes
    protected[scales.xml]
  47. val iStrictPath: List[QName]

    Permalink
    Attributes
    protected[scales.xml]
  48. def indexOf[B >: xml.PullType](elem: B): Int

    Permalink
    Definition Classes
    Iterator
  49. def indexWhere(p: (xml.PullType) ⇒ Boolean): Int

    Permalink
    Definition Classes
    Iterator
  50. def internalClose: Unit

    Permalink
    Attributes
    protected[scales.xml]
  51. def isEmpty: Boolean

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  52. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  53. def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  54. final val it: Iterator[xml.PullType]

    Permalink
  55. def length: Int

    Permalink
    Definition Classes
    Iterator
  56. def map[B](f: (xml.PullType) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  57. def max[B >: xml.PullType](implicit cmp: Ordering[B]): xml.PullType

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def min[B >: xml.PullType](implicit cmp: Ordering[B]): xml.PullType

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  65. def next(): xml.PullType

    Permalink
    Definition Classes
    XmlPull → Iterator
  66. def nonEmpty: Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  69. def padTo[A1 >: xml.PullType](len: Int, elem: A1): Iterator[A1]

    Permalink
    Definition Classes
    Iterator
  70. def partition(p: (xml.PullType) ⇒ Boolean): (Iterator[xml.PullType], Iterator[xml.PullType])

    Permalink
    Definition Classes
    Iterator
  71. def patch[B >: xml.PullType](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  72. def product[B >: xml.PullType](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def prolog: Prolog

    Permalink
    Definition Classes
    XmlPullDocLike
  74. def pumpEvent: xml.PullType

    Permalink
    Attributes
    protected[scales.xml]
  75. def reduce[A1 >: xml.PullType](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def reduceLeft[B >: xml.PullType](op: (B, xml.PullType) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  77. def reduceLeftOption[B >: xml.PullType](op: (B, xml.PullType) ⇒ B): Option[B]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def reduceRight[B >: xml.PullType](op: (xml.PullType, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def reduceRightOption[B >: xml.PullType](op: (xml.PullType, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def reversed: List[xml.PullType]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  82. def sameElements(that: Iterator[_]): Boolean

    Permalink
    Definition Classes
    Iterator
  83. def scanLeft[B](z: B)(op: (B, xml.PullType) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  84. def scanRight[B](z: B)(op: (xml.PullType, B) ⇒ B): Iterator[B]

    Permalink
    Definition Classes
    Iterator
  85. def seq: Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  86. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def slice(from: Int, until: Int): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  88. def sliding[B >: xml.PullType](size: Int, step: Int): GroupedIterator[B]

    Permalink
    Definition Classes
    Iterator
  89. def span(p: (xml.PullType) ⇒ Boolean): (Iterator[xml.PullType], Iterator[xml.PullType])

    Permalink
    Definition Classes
    Iterator
  90. def start: Unit

    Permalink

    Pumps until the first elem, always collecting the prolog

    Pumps until the first elem, always collecting the prolog

    Attributes
    protected[scales.xml]
  91. def sum[B >: xml.PullType](implicit num: Numeric[B]): B

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

    Permalink
    Definition Classes
    AnyRef
  93. def take(n: Int): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  94. def takeWhile(p: (xml.PullType) ⇒ Boolean): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  95. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, xml.PullType, Col[xml.PullType]]): Col[xml.PullType]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def toArray[B >: xml.PullType](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def toBuffer[B >: xml.PullType]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def toIndexedSeq: IndexedSeq[xml.PullType]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def toIterable: Iterable[xml.PullType]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def toIterator: Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  101. def toList: List[xml.PullType]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def toSeq: Seq[xml.PullType]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def toSet[B >: xml.PullType]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def toStream: Stream[xml.PullType]

    Permalink
    Definition Classes
    Iterator → GenTraversableOnce
  106. def toString(): String

    Permalink
    Definition Classes
    Iterator → AnyRef → Any
  107. def toTraversable: Traversable[xml.PullType]

    Permalink
    Definition Classes
    Iterator → TraversableOnce → GenTraversableOnce
  108. def toVector: Vector[xml.PullType]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  112. implicit val weAreInAParser: FromParser

    Permalink
  113. def withFilter(p: (xml.PullType) ⇒ Boolean): Iterator[xml.PullType]

    Permalink
    Definition Classes
    Iterator
  114. def zip[B](that: Iterator[B]): Iterator[(xml.PullType, B)]

    Permalink
    Definition Classes
    Iterator
  115. def zipAll[B, A1 >: xml.PullType, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]

    Permalink
    Definition Classes
    Iterator
  116. def zipWithIndex: Iterator[(xml.PullType, Int)]

    Permalink
    Definition Classes
    Iterator

Inherited from DocLike

Inherited from Iterator[xml.PullType]

Inherited from TraversableOnce[xml.PullType]

Inherited from GenTraversableOnce[xml.PullType]

Inherited from AnyRef

Inherited from Any

Ungrouped