Packages

c

scala.xml

Document

class Document extends NodeSeq with XMLEvent with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Document
  2. XMLEvent
  3. NodeSeq
  4. Serializable
  5. Serializable
  6. Equality
  7. ScalaVersionSpecificNodeSeq
  8. StrictOptimizedSeqOps
  9. StrictOptimizedSeqOps
  10. StrictOptimizedIterableOps
  11. Seq
  12. SeqOps
  13. Iterable
  14. AbstractSeq
  15. Seq
  16. Equals
  17. SeqOps
  18. PartialFunction
  19. Function1
  20. AbstractIterable
  21. Iterable
  22. IterableOps
  23. IterableOnceOps
  24. IterableOnce
  25. AnyRef
  26. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Document()

Type Members

  1. type IterableCC[X] = collection.immutable.Seq[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. final def ++[B >: Node](suffix: collection.Iterable[B]): collection.immutable.Seq[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ++:[B >: Node](prefix: collection.Iterable[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  5. final def +:[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  6. final def :+[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  7. final def :++[B >: Node](suffix: collection.Iterable[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def \(that: String): NodeSeq

    Projection function, which returns elements of this sequence based on the string that.

    Projection function, which returns elements of this sequence based on the string that. Use:

    • this \ "foo" to get a list of all elements that are labelled with "foo";
    • \ "_" to get a list of all elements (wildcard);
    • ns \ "@foo" to get the unprefixed attribute "foo";
    • ns \ "@{uri}foo" to get the prefixed attribute "pre:foo" whose prefix "pre" is resolved to the namespace "uri".

    For attribute projections, the resulting scala.xml.NodeSeq attribute values are wrapped in a scala.xml.Group.

    There is no support for searching a prefixed attribute by its literal prefix.

    The document order is preserved.

    Definition Classes
    NodeSeq
  10. def \@(attributeName: String): String

    Convenience method which returns string text of the named attribute.

    Convenience method which returns string text of the named attribute. Use:

    • that \@ "foo" to get the string text of attribute "foo";
    Definition Classes
    NodeSeq
  11. def \\(that: String): NodeSeq

    Projection function, which returns elements of this sequence and of all its subsequences, based on the string that.

    Projection function, which returns elements of this sequence and of all its subsequences, based on the string that. Use:

    • this \\ 'foo to get a list of all elements that are labelled with "foo";
    • \\ "_" to get a list of all elements (wildcard);
    • ns \\ "@foo" to get the unprefixed attribute "foo";
    • ns \\ "@{uri}foo" to get each prefixed attribute "pre:foo" whose prefix "pre" is resolved to the namespace "uri".

    For attribute projections, the resulting scala.xml.NodeSeq attribute values are wrapped in a scala.xml.Group.

    There is no support for searching a prefixed attribute by its literal prefix.

    The document order is preserved.

    Definition Classes
    NodeSeq
  12. def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  13. def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  14. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  15. var allDeclarationsProcessed: Boolean

    9.

    9. This property is not strictly speaking part of the infoset of the document. Rather it is an indication of whether the processor has read the complete DTD. Its value is a boolean. If it is false, then certain properties (indicated in their descriptions below) may be unknown. If it is true, those properties are never unknown.

  16. def andThen[C](k: (Node) ⇒ C): PartialFunction[Int, C]
    Definition Classes
    PartialFunction → Function1
  17. def appended[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  18. def appendedAll[B >: Node](suffix: collection.Iterable[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  19. def apply(f: (Node) ⇒ Boolean): NodeSeq
    Definition Classes
    NodeSeq
  20. def apply(i: Int): Node
    Definition Classes
    NodeSeq → SeqOps → Function1
  21. def applyOrElse[A1 <: Int, B1 >: Node](x: A1, default: (A1) ⇒ B1): B1
    Definition Classes
    PartialFunction
  22. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  23. var baseURI: String

    The base URI of the document entity.

  24. def basisForHashCode: collection.Seq[Any]
    Attributes
    protected
    Definition Classes
    NodeSeqEquality
  25. def canEqual(other: Any): Boolean

    We insist we're only equal to other xml.Equality implementors, which heads off a lot of inconsistency up front.

    We insist we're only equal to other xml.Equality implementors, which heads off a lot of inconsistency up front.

    Definition Classes
    DocumentNodeSeqEquality → Seq → Equals
  26. var children: collection.Seq[Node]

    An ordered list of child information items, in document order.

    An ordered list of child information items, in document order. The list contains exactly one element information item. The list also contains one processing instruction information item for each processing instruction outside the document element, and one comment information item for each comment outside the document element. Processing instructions and comments within the DTD are excluded. If there is a document type declaration, the list also contains a document type declaration information item.

  27. def className: String
    Definition Classes
    IterableOps
  28. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  29. def coll: Document.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  30. def collect[B](pf: PartialFunction[Node, B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  31. def collectFirst[B](pf: PartialFunction[Node, B]): Option[B]
    Definition Classes
    IterableOnceOps
  32. def combinations(n: Int): collection.Iterator[NodeSeq]
    Definition Classes
    SeqOps
  33. def compose[A](g: (A) ⇒ Int): (A) ⇒ Node
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  34. final def concat[B >: Node](suffix: collection.Iterable[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  35. def contains[A1 >: Node](elem: A1): Boolean
    Definition Classes
    SeqOps
  36. def containsSlice[B](that: collection.Seq[B]): Boolean
    Definition Classes
    SeqOps
  37. def copyToArray[B >: Node](xs: Array[B], start: Int, len: Int): xs.type
    Definition Classes
    IterableOnceOps
  38. def copyToArray[B >: Node](xs: Array[B], start: Int): xs.type
    Definition Classes
    IterableOnceOps
  39. def corresponds[B](that: collection.Seq[B])(p: (Node, B) ⇒ Boolean): Boolean
    Definition Classes
    SeqOps
  40. def count(p: (Node) ⇒ Boolean): Int
    Definition Classes
    IterableOnceOps
  41. def diff(that: collection.Seq[_ >: Node]): NodeSeq
    Definition Classes
    SeqOps
  42. def distinct: NodeSeq
    Definition Classes
    SeqOps
  43. def distinctBy[B](f: (Node) ⇒ B): NodeSeq
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  44. var docElem: Node

    The element information item corresponding to the document element.

  45. def drop(n: Int): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  46. def dropRight(n: Int): NodeSeq
    Definition Classes
    IterableOps
  47. def dropWhile(p: (Node) ⇒ Boolean): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  48. var dtd: DTD

    The dtd that comes with the document, if any

  49. var encoding: Option[String]

    The name of the character encoding scheme in which the document entity is expressed.

  50. def endsWith[B >: Node](that: collection.Iterable[B]): Boolean
    Definition Classes
    SeqOps
  51. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  52. def equals(other: Any): Boolean
    Definition Classes
    Equality → Equals → AnyRef → Any
  53. def exists(p: (Node) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  54. def filter(pred: (Node) ⇒ Boolean): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  55. def filterImpl(pred: (Node) ⇒ Boolean, isFlipped: Boolean): NodeSeq
    Attributes
    protected[scala.collection]
    Definition Classes
    StrictOptimizedIterableOps
  56. def filterNot(pred: (Node) ⇒ Boolean): NodeSeq
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  57. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  58. def find(p: (Node) ⇒ Boolean): Option[Node]
    Definition Classes
    IterableOnceOps
  59. def flatMap[B](f: (Node) ⇒ collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  60. def flatten[B](implicit toIterableOnce: (Node) ⇒ collection.IterableOnce[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  61. def fold[A1 >: Node](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    IterableOnceOps
  62. def foldLeft[B](z: B)(op: (B, Node) ⇒ B): B
    Definition Classes
    IterableOnceOps
  63. def foldRight[B](z: B)(op: (Node, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  64. def forall(p: (Node) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  65. def foreach[U](f: (Node) ⇒ U): Unit
    Definition Classes
    IterableOnceOps
  66. final def fromIterable[E](it: collection.Iterable[E]): collection.immutable.Seq[E]
    Attributes
    protected
    Definition Classes
    IterableOps
    Annotations
    @inline()
  67. def fromSpecificIterable(coll: Iterable[Node]): NodeSeq
    Definition Classes
    ScalaVersionSpecificNodeSeq → IterableOps
  68. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  69. def groupBy[K](f: (Node) ⇒ K): Map[K, NodeSeq]
    Definition Classes
    IterableOps
  70. def groupMap[K, B](key: (Node) ⇒ K)(f: (Node) ⇒ B): Map[K, collection.immutable.Seq[B]]
    Definition Classes
    IterableOps
  71. def groupMapReduce[K, B](key: (Node) ⇒ K)(f: (Node) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Definition Classes
    IterableOps
  72. def grouped(size: Int): collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  73. def hashCode(): Int

    It's be nice to make these final, but there are probably people out there subclassing the XML types, especially when it comes to equals.

    It's be nice to make these final, but there are probably people out there subclassing the XML types, especially when it comes to equals. However WE at least can pretend they are final since clearly individual classes cannot be trusted to maintain a semblance of order.

    Definition Classes
    Equality → AnyRef → Any
  74. def head: Node
    Definition Classes
    IterableOps
  75. def headOption: Option[Node]
    Definition Classes
    IterableOps
  76. def indexOf[B >: Node](elem: B, from: Int): Int
    Definition Classes
    SeqOps
  77. def indexOfSlice[B >: Node](that: collection.Seq[B], from: Int): Int
    Definition Classes
    SeqOps
  78. def indexWhere(p: (Node) ⇒ Boolean, from: Int): Int
    Definition Classes
    SeqOps
  79. def indices: collection.immutable.Range
    Definition Classes
    SeqOps
  80. def init: NodeSeq
    Definition Classes
    IterableOps
  81. def inits: collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  82. def intersect(that: collection.Seq[_ >: Node]): NodeSeq
    Definition Classes
    SeqOps
  83. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    SeqOps
  84. def isEmpty: Boolean
    Definition Classes
    SeqOps → IterableOnceOps
  85. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  86. def iterableFactory: SeqFactory[IterableCC]
    Definition Classes
    Seq → Seq → Iterable → Iterable → IterableOps
  87. def iterator: collection.Iterator[Node]
    Definition Classes
    NodeSeq → IterableOnce
  88. def knownSize: Int
    Definition Classes
    IterableOnceOps
  89. def last: Node
    Definition Classes
    IterableOps
  90. def lastIndexOf[B >: Node](elem: B, end: Int): Int
    Definition Classes
    SeqOps
  91. def lastIndexOfSlice[B >: Node](that: collection.Seq[B], end: Int): Int
    Definition Classes
    SeqOps
  92. def lastIndexWhere(p: (Node) ⇒ Boolean, end: Int): Int
    Definition Classes
    SeqOps
  93. def lastOption: Option[Node]
    Definition Classes
    IterableOps
  94. def length: Int
    Definition Classes
    NodeSeq → SeqOps
  95. def lengthCompare(len: Int): Int
    Definition Classes
    SeqOps
  96. def lift: (Int) ⇒ Option[Node]
    Definition Classes
    PartialFunction
  97. def map[B](f: (Node) ⇒ B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  98. def max[B >: Node](implicit ord: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  99. def maxBy[B](f: (Node) ⇒ B)(implicit cmp: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  100. def maxByOption[B](f: (Node) ⇒ B)(implicit cmp: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  101. def maxOption[B >: Node](implicit ord: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  102. def min[B >: Node](implicit ord: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  103. def minBy[B](f: (Node) ⇒ B)(implicit cmp: math.Ordering[B]): Node
    Definition Classes
    IterableOnceOps
  104. def minByOption[B](f: (Node) ⇒ B)(implicit cmp: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  105. def minOption[B >: Node](implicit ord: math.Ordering[B]): Option[Node]
    Definition Classes
    IterableOnceOps
  106. def mkString: String
    Definition Classes
    IterableOnceOps
  107. def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
  108. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  109. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  110. def newSpecificBuilder(): Builder[Node, NodeSeq]
    Definition Classes
    ScalaVersionSpecificNodeSeq → IterableOps
  111. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  112. def notations: collection.Seq[NotationDecl]

    An unordered set of notation information items, one for each notation declared in the DTD.

    An unordered set of notation information items, one for each notation declared in the DTD. If any notation is multiply declared, this property has no value.

  113. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  114. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  115. def orElse[A1 <: Int, B1 >: Node](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  116. def padTo[B >: Node](len: Int, elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  117. def partition(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  118. def patch[B >: Node](from: Int, other: collection.IterableOnce[B], replaced: Int): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  119. def permutations: collection.Iterator[NodeSeq]
    Definition Classes
    SeqOps
  120. def prepended[B >: Node](elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  121. def prependedAll[B >: Node](prefix: collection.Iterable[B]): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  122. def product[B >: Node](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  123. def reduce[B >: Node](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  124. def reduceLeft[B >: Node](op: (B, Node) ⇒ B): B
    Definition Classes
    IterableOnceOps
  125. def reduceLeftOption[B >: Node](op: (B, Node) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  126. def reduceOption[B >: Node](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  127. def reduceRight[B >: Node](op: (Node, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  128. def reduceRightOption[B >: Node](op: (Node, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  129. def reverse: NodeSeq
    Definition Classes
    SeqOps
  130. def reverseIterator: collection.Iterator[Node]
    Definition Classes
    SeqOps
  131. def reversed: collection.Iterable[Node]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  132. def runWith[U](action: (Node) ⇒ U): (Int) ⇒ Boolean
    Definition Classes
    PartialFunction
  133. def sameElements[B >: Node](that: collection.IterableOnce[B]): Boolean
    Definition Classes
    SeqOps
  134. def scan[B >: Node](z: B)(op: (B, B) ⇒ B): collection.immutable.Seq[B]
    Definition Classes
    IterableOps
  135. def scanLeft[B](z: B)(op: (B, Node) ⇒ B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  136. def scanRight[B](z: B)(op: (Node, B) ⇒ B): collection.immutable.Seq[B]
    Definition Classes
    IterableOps
  137. def search[B >: Node](elem: B, from: Int, to: Int)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    SeqOps
  138. def search[B >: Node](elem: B)(implicit ord: Ordering[B]): SearchResult
    Definition Classes
    SeqOps
  139. def segmentLength(p: (Node) ⇒ Boolean, from: Int): Int
    Definition Classes
    SeqOps
  140. final def size: Int
    Definition Classes
    SeqOps → IterableOnceOps
  141. def slice(from: Int, until: Int): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  142. def sliding(size: Int, step: Int): collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  143. def sliding(size: Int): collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  144. def sortBy[B](f: (Node) ⇒ B)(implicit ord: Ordering[B]): NodeSeq
    Definition Classes
    SeqOps
  145. def sortWith(lt: (Node, Node) ⇒ Boolean): NodeSeq
    Definition Classes
    SeqOps
  146. def sorted[B >: Node](implicit ord: Ordering[B]): NodeSeq
    Definition Classes
    SeqOps
  147. def span(p: (Node) ⇒ Boolean): (NodeSeq, NodeSeq)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  148. def splitAt(n: Int): (NodeSeq, NodeSeq)
    Definition Classes
    IterableOps
  149. var standAlone: Option[Boolean]

    An indication of the standalone status of the document, either true or false.

    An indication of the standalone status of the document, either true or false. This property is derived from the optional standalone document declaration in the XML declaration at the beginning of the document entity, and has no value (None) if there is no standalone document declaration.

  150. def startsWith[B >: Node](that: collection.IterableOnce[B], offset: Int): Boolean
    Definition Classes
    SeqOps
  151. def strict_!=(other: Equality): Boolean
    Definition Classes
    Equality
  152. def strict_==(other: Equality): Boolean
    Definition Classes
    NodeSeqEquality
  153. def sum[B >: Node](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  154. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  155. def tail: NodeSeq
    Definition Classes
    IterableOps
  156. def tails: collection.Iterator[NodeSeq]
    Definition Classes
    IterableOps
  157. def take(n: Int): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  158. def takeRight(n: Int): NodeSeq
    Definition Classes
    IterableOps
  159. def takeWhile(p: (Node) ⇒ Boolean): NodeSeq
    Definition Classes
    IterableOps → IterableOnceOps
  160. def text: String
    Definition Classes
    NodeSeq
  161. def theSeq: collection.Seq[Node]
    Definition Classes
    DocumentNodeSeq
  162. def to[C1](factory: Factory[Node, C1]): C1
    Definition Classes
    IterableOnceOps
  163. def toArray[B >: Node](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  164. def toIndexedSeq: collection.immutable.IndexedSeq[Node]
    Definition Classes
    IterableOnceOps
  165. final def toIterable: Document.this.type
    Definition Classes
    Iterable → IterableOps
  166. def toList: collection.immutable.List[Node]
    Definition Classes
    IterableOnceOps
  167. def toMap[K, V](implicit ev: <:<[Node, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  168. final def toSeq: Document.this.type
    Definition Classes
    Seq → SeqOps → IterableOnceOps
  169. def toSet[B >: Node]: Set[B]
    Definition Classes
    IterableOnceOps
  170. def toString(): String
    Definition Classes
    NodeSeq → Seq → Function1 → IterableOps → AnyRef → Any
  171. def toVector: collection.immutable.Vector[Node]
    Definition Classes
    IterableOnceOps
  172. def transpose[B](implicit asIterable: (Node) ⇒ collection.Iterable[B]): collection.immutable.Seq[collection.immutable.Seq[B]]
    Definition Classes
    IterableOps
  173. def unparsedEntities: collection.Seq[EntityDecl]

    An unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD.

  174. def unzip[A1, A2](implicit asPair: (Node) ⇒ (A1, A2)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  175. def unzip3[A1, A2, A3](implicit asTriple: (Node) ⇒ (A1, A2, A3)): (collection.immutable.Seq[A1], collection.immutable.Seq[A2], collection.immutable.Seq[A3])
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  176. def updated[B >: Node](index: Int, elem: B): collection.immutable.Seq[B]
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  177. var version: Option[String]

    A string representing the XML version of the document.

    A string representing the XML version of the document. This property is derived from the XML declaration optionally present at the beginning of the document entity, and has no value (None) if there is no XML declaration.

  178. def view: SeqView[Node]
    Definition Classes
    SeqOps → IterableOps
  179. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  180. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  181. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  182. def withFilter(p: (Node) ⇒ Boolean): WithFilter[Node, collection.immutable.Seq]
    Definition Classes
    IterableOps
  183. final def xml_!=(other: Any): Boolean
    Definition Classes
    Equality
  184. final def xml_==(other: Any): Boolean
    Definition Classes
    Equality
  185. def xml_sameElements[A](that: Iterable[A]): Boolean
    Definition Classes
    NodeSeq
  186. def zip[B](that: collection.Iterable[B]): collection.immutable.Seq[(Node, B)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  187. def zipAll[A1 >: Node, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.immutable.Seq[(A1, B)]
    Definition Classes
    IterableOps
  188. def zipWithIndex: collection.immutable.Seq[(Node, Int)]
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps

Deprecated Value Members

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

    (Since version 2.13.0) Use foldLeft instead of /:

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

    (Since version 2.13.0) Use foldRight instead of :\

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

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

  4. final def hasDefiniteSize: Boolean
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  5. final def prefixLength(p: (Node) ⇒ Boolean): Int
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  6. def reverseMap[B](f: (Node) ⇒ B): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  7. def seq: Document.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

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

  8. final def stringPrefix: String
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use className instead of stringPrefix

  9. final def toBuffer[B >: Node]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

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

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

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

    (Since version 2.13.0) Use Stream.from(it) instead of it.toStream

  12. final def union[B >: Node, That](that: collection.Seq[B]): collection.immutable.Seq[B]
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

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

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

Inherited from XMLEvent

Inherited from NodeSeq

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Equality

Inherited from AbstractSeq[Node]

Inherited from collection.Seq[Node]

Inherited from Equals

Inherited from PartialFunction[Int, Node]

Inherited from (Int) ⇒ Node

Inherited from AbstractIterable[Node]

Inherited from collection.Iterable[Node]

Inherited from AnyRef

Inherited from Any

Ungrouped