eu.cdevreeze.yaidom.resolved

Elem

final case class Elem(resolvedName: EName, resolvedAttributes: Map[EName, String], children: IndexedSeq[Node]) extends Node with UpdatableElemLike[Node, Elem] with HasText with Product with Serializable

Element as abstract data type. It contains only expanded names, not qualified names. This reminds of James Clark notation for XML trees and expanded names, where qualified names are absent.

Namespace declarations (and undeclarations) are not considered attributes in this API.

Self Type
Elem
Linear Supertypes
Serializable, Serializable, Product, Equals, HasText, UpdatableElemLike[Node, Elem], UpdatableElemApi[Node, Elem], PathAwareElemLike[Elem], PathAwareElemApi[Elem], ElemLike[Elem], ElemApi[Elem], ParentElemLike[Elem], ParentElemApi[Elem], Node, Immutable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Elem
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HasText
  7. UpdatableElemLike
  8. UpdatableElemApi
  9. PathAwareElemLike
  10. PathAwareElemApi
  11. ElemLike
  12. ElemApi
  13. ParentElemLike
  14. ParentElemApi
  15. Node
  16. Immutable
  17. AnyRef
  18. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Elem(resolvedName: EName, resolvedAttributes: Map[EName, String], children: IndexedSeq[Node])

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. final def \(expandedName: EName): IndexedSeq[Elem]

    Shorthand for filterChildElems(expandedName).

    Shorthand for filterChildElems(expandedName).

    Definition Classes
    ElemLikeElemApi
  7. final def \(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Shorthand for filterChildElems(p).

    Shorthand for filterChildElems(p). Use this shorthand only if the predicate is a short expression.

    Definition Classes
    ParentElemLikeParentElemApi
  8. final def \@(expandedName: EName): Option[String]

    Shorthand for attributeOption(expandedName)

    Shorthand for attributeOption(expandedName)

    Definition Classes
    ElemLikeElemApi
  9. final def \\(expandedName: EName): IndexedSeq[Elem]

    Shorthand for filterElemsOrSelf(expandedName).

    Shorthand for filterElemsOrSelf(expandedName).

    Definition Classes
    ElemLikeElemApi
  10. final def \\(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Shorthand for filterElemsOrSelf(p).

    Shorthand for filterElemsOrSelf(p). Use this shorthand only if the predicate is a short expression.

    Definition Classes
    ParentElemLikeParentElemApi
  11. final def \\!(expandedName: EName): IndexedSeq[Elem]

    Shorthand for findTopmostElemsOrSelf(expandedName).

    Shorthand for findTopmostElemsOrSelf(expandedName).

    Definition Classes
    ElemLikeElemApi
  12. final def \\!(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Shorthand for findTopmostElemsOrSelf(p).

    Shorthand for findTopmostElemsOrSelf(p). Use this shorthand only if the predicate is a short expression.

    Definition Classes
    ParentElemLikeParentElemApi
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. final def attribute(expandedName: EName): String

    Returns the value of the attribute with the given expanded name, and throws an exception otherwise

    Returns the value of the attribute with the given expanded name, and throws an exception otherwise

    Definition Classes
    ElemLikeElemApi
  15. final def attributeOption(expandedName: EName): Option[String]

    Returns the value of the attribute with the given expanded name, if any, wrapped in an Option

    Returns the value of the attribute with the given expanded name, if any, wrapped in an Option

    Definition Classes
    ElemLikeElemApi
  16. def canEqual(arg0: Any): Boolean

    Definition Classes
    Elem → Equals
  17. def childNodeIndex(childPathEntry: Entry): Int

    Returns the child node index of the given ElemPath.Entry with respect to this element as parent element.

    Returns the child node index of the given ElemPath.Entry with respect to this element as parent element. If the path entry is not found, -1 is returned.

    Methods updated (taking ElemPaths) heavily use this method to turn ElemPaths into child node indexes. This method should therefore be very fast (preferably using a cache from ElemPath.Entry instances to indexes).

    Definition Classes
    ElemUpdatableElemLikeUpdatableElemApi
  18. val children: IndexedSeq[Node]

    Returns the child nodes of this element, in the correct order

    Returns the child nodes of this element, in the correct order

    Definition Classes
    ElemUpdatableElemLikeUpdatableElemApi
  19. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def coalesceAllAdjacentText: Elem

    Returns a copy where adjacent text nodes have been combined into one text node, throughout the node tree

  21. def coalesceAndNormalizeAllText: Elem

    Returns a copy where adjacent text nodes have been combined into one text node, and where all text is normalized, throughout the node tree.

    Returns a copy where adjacent text nodes have been combined into one text node, and where all text is normalized, throughout the node tree. Same as calling coalesceAllAdjacentText followed by normalizeAllText, but more efficient.

  22. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    Elem → Equals → AnyRef → Any
  24. final def filterChildElemPaths(p: (Elem) ⇒ Boolean): IndexedSeq[ElemPath]

    Returns the paths of child elements obeying the given predicate

    Returns the paths of child elements obeying the given predicate

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  25. final def filterChildElems(expandedName: EName): IndexedSeq[Elem]

    Returns the child elements with the given expanded name

    Returns the child elements with the given expanded name

    Definition Classes
    ElemLikeElemApi
  26. final def filterChildElems(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Core method that returns the child elements obeying the given predicate.

    Core method that returns the child elements obeying the given predicate. This method could be defined as:

    def filterChildElems(p: E => Boolean): immutable.IndexedSeq[E] =
      this.findAllChildElems.filter(p)
    
    Definition Classes
    ParentElemLikeParentElemApi
  27. final def filterElemOrSelfPaths(p: (Elem) ⇒ Boolean): IndexedSeq[ElemPath]

    Returns the paths of descendant-or-self elements that obey the given predicate.

    Returns the paths of descendant-or-self elements that obey the given predicate. That is, the result is equivalent to the paths of findAllElemsOrSelf filter p.

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  28. final def filterElemPaths(p: (Elem) ⇒ Boolean): IndexedSeq[ElemPath]

    Returns the paths of descendant elements obeying the given predicate, that is, the paths of findAllElems filter p

    Returns the paths of descendant elements obeying the given predicate, that is, the paths of findAllElems filter p

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  29. final def filterElems(expandedName: EName): IndexedSeq[Elem]

    Returns the descendant elements with the given expanded name

    Returns the descendant elements with the given expanded name

    Definition Classes
    ElemLikeElemApi
  30. final def filterElems(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Returns the descendant elements obeying the given predicate.

    Returns the descendant elements obeying the given predicate. This method could be defined as:

    this.findAllChildElems flatMap (_.filterElemsOrSelf(p))
    
    Definition Classes
    ParentElemLikeParentElemApi
  31. final def filterElemsOrSelf(expandedName: EName): IndexedSeq[Elem]

    Returns the descendant-or-self elements that have the given expanded name

    Returns the descendant-or-self elements that have the given expanded name

    Definition Classes
    ElemLikeElemApi
  32. final def filterElemsOrSelf(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Core method that returns the descendant-or-self elements obeying the given predicate.

    Core method that returns the descendant-or-self elements obeying the given predicate. This method could be defined as:

    def filterElemsOrSelf(p: E => Boolean): immutable.IndexedSeq[E] =
      Vector(this).filter(p) ++ (this.findAllChildElems flatMap (_.filterElemsOrSelf(p)))
    

    It can be proven that the result is equivalent to findAllElemsOrSelf filter p.

    Definition Classes
    ParentElemLikeParentElemApi
  33. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  34. final def findAllChildElemPathEntries: IndexedSeq[Entry]

    Returns the ElemPath entries of all child elements, in the correct order.

    Returns the ElemPath entries of all child elements, in the correct order. Equivalent to findAllChildElemsWithPathEntries map { _._2 }.

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  35. final def findAllChildElemPaths: IndexedSeq[ElemPath]

    Returns findAllChildElemsWithPathEntries map { case (e, pe) => ElemPath.from(pe) }

    Returns findAllChildElemsWithPathEntries map { case (e, pe) => ElemPath.from(pe) }

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  36. def findAllChildElems: IndexedSeq[Elem]

    Returns the element children

    Returns the element children

    Definition Classes
    ElemParentElemLikeParentElemApi
  37. def findAllChildElemsWithPathEntries: IndexedSeq[(Elem, Entry)]

    Returns all child elements with their ElemPath entries, in the correct order.

    Returns all child elements with their ElemPath entries, in the correct order.

    The implementation must be such that the following holds: (findAllChildElemsWithPathEntries map (_._1)) == findAllChildElems

    Definition Classes
    ElemPathAwareElemLikePathAwareElemApi
  38. final def findAllElemOrSelfPaths: IndexedSeq[ElemPath]

    Returns the path of this element followed by the paths of all descendant elements (that is, the descendant-or-self elements)

    Returns the path of this element followed by the paths of all descendant elements (that is, the descendant-or-self elements)

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  39. final def findAllElemPaths: IndexedSeq[ElemPath]

    Returns the paths of all descendant elements (not including this element).

    Returns the paths of all descendant elements (not including this element). Equivalent to findAllElemOrSelfPaths.drop(1)

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  40. final def findAllElems: IndexedSeq[Elem]

    Returns all descendant elements (not including this element).

    Returns all descendant elements (not including this element). This method could be defined as filterElems { e => true }. Equivalent to findAllElemsOrSelf.drop(1).

    Definition Classes
    ParentElemLikeParentElemApi
  41. final def findAllElemsOrSelf: IndexedSeq[Elem]

    Returns this element followed by all descendant elements (that is, the descendant-or-self elements).

    Returns this element followed by all descendant elements (that is, the descendant-or-self elements). This method could be defined as filterElemsOrSelf { e => true }.

    Definition Classes
    ParentElemLikeParentElemApi
  42. final def findAttributeByLocalName(localName: String): Option[String]

    Returns the first found attribute value of an attribute with the given local name, if any, wrapped in an Option.

    Returns the first found attribute value of an attribute with the given local name, if any, wrapped in an Option. Because of differing namespaces, it is possible that more than one such attribute exists, although this is not often the case.

    Definition Classes
    ElemLikeElemApi
  43. final def findChildElem(expandedName: EName): Option[Elem]

    Returns the first found child element with the given expanded name, if any, wrapped in an Option

    Returns the first found child element with the given expanded name, if any, wrapped in an Option

    Definition Classes
    ElemLikeElemApi
  44. final def findChildElem(p: (Elem) ⇒ Boolean): Option[Elem]

    Returns the first found child element obeying the given predicate, if any, wrapped in an Option.

    Returns the first found child element obeying the given predicate, if any, wrapped in an Option. This method could be defined as filterChildElems(p).headOption.

    Definition Classes
    ParentElemLikeParentElemApi
  45. final def findChildElemPath(p: (Elem) ⇒ Boolean): Option[ElemPath]

    Returns the path of the first found child element obeying the given predicate, if any, wrapped in an Option

    Returns the path of the first found child element obeying the given predicate, if any, wrapped in an Option

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  46. final def findElem(expandedName: EName): Option[Elem]

    Returns the first found (topmost) descendant element with the given expanded name, if any, wrapped in an Option

    Returns the first found (topmost) descendant element with the given expanded name, if any, wrapped in an Option

    Definition Classes
    ElemLikeElemApi
  47. final def findElem(p: (Elem) ⇒ Boolean): Option[Elem]

    Returns the first found (topmost) descendant element obeying the given predicate, if any, wrapped in an Option.

    Returns the first found (topmost) descendant element obeying the given predicate, if any, wrapped in an Option. This method could be defined as filterElems(p).headOption.

    Definition Classes
    ParentElemLikeParentElemApi
  48. final def findElemOrSelf(expandedName: EName): Option[Elem]

    Returns the first found (topmost) descendant-or-self element with the given expanded name, if any, wrapped in an Option

    Returns the first found (topmost) descendant-or-self element with the given expanded name, if any, wrapped in an Option

    Definition Classes
    ElemLikeElemApi
  49. final def findElemOrSelf(p: (Elem) ⇒ Boolean): Option[Elem]

    Returns the first found (topmost) descendant-or-self element obeying the given predicate, if any, wrapped in an Option.

    Returns the first found (topmost) descendant-or-self element obeying the given predicate, if any, wrapped in an Option. This method could be defined as filterElemsOrSelf(p).headOption.

    Definition Classes
    ParentElemLikeParentElemApi
  50. final def findElemOrSelfPath(p: (Elem) ⇒ Boolean): Option[ElemPath]

    Returns the path of the first found (topmost) descendant-or-self element obeying the given predicate, if any, wrapped in an Option

    Returns the path of the first found (topmost) descendant-or-self element obeying the given predicate, if any, wrapped in an Option

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  51. final def findElemPath(p: (Elem) ⇒ Boolean): Option[ElemPath]

    Returns the path of the first found (topmost) descendant element obeying the given predicate, if any, wrapped in an Option

    Returns the path of the first found (topmost) descendant element obeying the given predicate, if any, wrapped in an Option

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  52. final def findTopmostElemOrSelfPaths(p: (Elem) ⇒ Boolean): IndexedSeq[ElemPath]

    Returns the paths of the descendant-or-self elements that obey the given predicate, such that no ancestor obeys the predicate.

    Returns the paths of the descendant-or-self elements that obey the given predicate, such that no ancestor obeys the predicate.

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  53. final def findTopmostElemPaths(p: (Elem) ⇒ Boolean): IndexedSeq[ElemPath]

    Returns the paths of the descendant elements obeying the given predicate that have no ancestor obeying the predicate

    Returns the paths of the descendant elements obeying the given predicate that have no ancestor obeying the predicate

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  54. final def findTopmostElems(expandedName: EName): IndexedSeq[Elem]

    Returns the descendant elements with the given expanded name that have no ancestor with the same name

    Returns the descendant elements with the given expanded name that have no ancestor with the same name

    Definition Classes
    ElemLikeElemApi
  55. final def findTopmostElems(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Returns the descendant elements obeying the given predicate that have no ancestor obeying the predicate.

    Returns the descendant elements obeying the given predicate that have no ancestor obeying the predicate. This method could be defined as:

    this.findAllChildElems flatMap (_.findTopmostElemsOrSelf(p))
    
    Definition Classes
    ParentElemLikeParentElemApi
  56. final def findTopmostElemsOrSelf(expandedName: EName): IndexedSeq[Elem]

    Returns the descendant-or-self elements with the given expanded name that have no ancestor with the same name

    Returns the descendant-or-self elements with the given expanded name that have no ancestor with the same name

    Definition Classes
    ElemLikeElemApi
  57. final def findTopmostElemsOrSelf(p: (Elem) ⇒ Boolean): IndexedSeq[Elem]

    Core method that returns the descendant-or-self elements obeying the given predicate, such that no ancestor obeys the predicate.

    Core method that returns the descendant-or-self elements obeying the given predicate, such that no ancestor obeys the predicate. This method could be defined as:

    def findTopmostElemsOrSelf(p: E => Boolean): immutable.IndexedSeq[E] =
      if (p(this)) Vector(this)
      else (this.findAllChildElems flatMap (_.findTopmostElemsOrSelf(p)))
    
    Definition Classes
    ParentElemLikeParentElemApi
  58. final def findWithElemPath(path: ElemPath): Option[Elem]

    Finds the element with the given ElemPath (where this element is the root), if any, wrapped in an Option.

    Finds the element with the given ElemPath (where this element is the root), if any, wrapped in an Option. This method must be very efficient, which depends on the efficiency of method findWithElemPathEntry.

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  59. def findWithElemPathEntry(entry: Entry): Option[Elem]

    Returns the equivalent of findWithElemPath(ElemPath(immutable.IndexedSeq(entry))), but it should be very efficient.

    Returns the equivalent of findWithElemPath(ElemPath(immutable.IndexedSeq(entry))), but it should be very efficient.

    Indeed, it is function findWithElemPath that is defined in terms of this function, findWithElemPathEntry, and not the other way around.

    Definition Classes
    ElemPathAwareElemLikePathAwareElemApi
  60. final def getChildElem(expandedName: EName): Elem

    Returns the single child element with the given expanded name, and throws an exception otherwise

    Returns the single child element with the given expanded name, and throws an exception otherwise

    Definition Classes
    ElemLikeElemApi
  61. final def getChildElem(p: (Elem) ⇒ Boolean): Elem

    Returns the single child element obeying the given predicate, and throws an exception otherwise.

    Returns the single child element obeying the given predicate, and throws an exception otherwise. This method could be defined as findChildElem(p).get.

    Definition Classes
    ParentElemLikeParentElemApi
  62. final def getChildElemPath(p: (Elem) ⇒ Boolean): ElemPath

    Returns the path of the single child element obeying the given predicate, and throws an exception otherwise

    Returns the path of the single child element obeying the given predicate, and throws an exception otherwise

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  63. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  64. final def getWithElemPath(path: ElemPath): Elem

    Returns (the equivalent of) findWithElemPath(path).get

    Returns (the equivalent of) findWithElemPath(path).get

    Definition Classes
    PathAwareElemLikePathAwareElemApi
  65. def hashCode(): Int

    Definition Classes
    Elem → AnyRef → Any
  66. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  67. final def localName: String

    The local name (or local part).

    The local name (or local part). Convenience method.

    Definition Classes
    ElemLikeElemApi
  68. final def minusChild(index: Int): Elem

    Returns a copy in which the child at the given position (0-based) has been removed

    Returns a copy in which the child at the given position (0-based) has been removed

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  69. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  70. def normalizeAllText: Elem

    Returns a copy where text nodes have been normalized, throughout the node tree.

    Returns a copy where text nodes have been normalized, throughout the node tree. Note that it makes little sense to call this method before coalesceAllAdjacentText.

  71. final def normalizedText: String

    Returns XmlStringUtils.normalizeString(text).

    Returns XmlStringUtils.normalizeString(text).

    Definition Classes
    HasText
  72. final def notify(): Unit

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

    Definition Classes
    AnyRef
  74. final def plusChild(child: Node): Elem

    Returns a copy in which the given child has been inserted at the end

    Returns a copy in which the given child has been inserted at the end

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  75. final def plusChild(index: Int, child: Node): Elem

    Returns a copy in which the given child has been inserted at the given position (0-based)

    Returns a copy in which the given child has been inserted at the given position (0-based)

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  76. def productArity: Int

    Definition Classes
    Elem → Product
  77. def productElement(arg0: Int): Any

    Definition Classes
    Elem → Product
  78. def productIterator: Iterator[Any]

    Definition Classes
    Product
  79. def productPrefix: String

    Definition Classes
    Elem → Product
  80. def removeAllInterElementWhitespace: Elem

    Returns a copy where inter-element whitespace has been removed, throughout the node tree

  81. val resolvedAttributes: Map[EName, String]

    The attributes as a mapping from ENames (instead of QNames) to values.

    The attributes as a mapping from ENames (instead of QNames) to values.

    The implementation must ensure that resolvedAttributes.toMap.size == resolvedAttributes.size.

    Definition Classes
    ElemElemLikeElemApi
  82. val resolvedName: EName

    Resolved name of the element, as EName

    Resolved name of the element, as EName

    Definition Classes
    ElemElemLikeElemApi
  83. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  84. def text: String

    Returns the concatenation of the texts of text children, including whitespace.

    Returns the concatenation of the texts of text children, including whitespace. Non-text children are ignored. If there are no text children, the empty string is returned.

    Definition Classes
    ElemHasText
  85. def textChildren: IndexedSeq[Text]

    Returns the text children

  86. def toString(): String

    Definition Classes
    Elem → AnyRef → Any
  87. final def topmostUpdated(pf: PartialFunction[Elem, Elem]): Elem

    Functionally updates the topmost descendant-or-self elements for which the partial function is defined, within the tree of which this element is the root element.

    Functionally updates the topmost descendant-or-self elements for which the partial function is defined, within the tree of which this element is the root element.

    This function is equivalent to:

    val p = { e: E => pf.isDefinedAt(e) }
    val pathsReversed = findTopmostElemOrSelfPaths(p).reverse
    
    pathsReversed.foldLeft(self) { case (acc, path) =>
      val e = acc.findWithElemPath(path).get
      acc.updated(path, pf(e))
    }
    

    This can be an expensive function, partly because (repeatedly) finding elements by element paths can be expensive, and partly because many intermediate element objects may be created.

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  88. final def trimmedText: String

    Returns text.trim.

    Returns text.trim.

    Definition Classes
    HasText
  89. final def updated(pf: PartialFunction[Elem, Elem]): Elem

    Functionally updates the descendant-or-self elements for which the partial function is defined, within the tree of which this element is the root element.

    Functionally updates the descendant-or-self elements for which the partial function is defined, within the tree of which this element is the root element.

    This function is equivalent to:

    val p = { e: E => pf.isDefinedAt(e) }
    val pathsReversed = filterElemOrSelfPaths(p).reverse
    
    pathsReversed.foldLeft(self) { case (acc, path) =>
      val e = acc.findWithElemPath(path).get
      acc.updated(path, pf(e))
    }
    

    This can be an expensive function, partly because (repeatedly) finding elements by element paths can be expensive, and partly because many intermediate element objects may be created. Typically, when all elements must be "functionally updated" (so when the partial function is defined for all elements), it is better to do so by recursion, without using this function.

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  90. final def updated(path: ElemPath, newElem: Elem): Elem

    Returns updated(path) { e => newElem }

    Returns updated(path) { e => newElem }

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  91. final def updated(path: ElemPath)(f: (Elem) ⇒ Elem): Elem

    "Functionally updates" the tree with this element as root element, by applying the passed function to the element that has the given ElemPath (compared to this element as root).

    "Functionally updates" the tree with this element as root element, by applying the passed function to the element that has the given ElemPath (compared to this element as root).

    The method throws an exception if no element is found with the given path.

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  92. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  95. def withChildren(newChildren: IndexedSeq[Node]): Elem

    Creates a copy, but with (only) the children passed as parameter newChildren

    Creates a copy, but with (only) the children passed as parameter newChildren

    Definition Classes
    ElemUpdatableElemLikeUpdatableElemApi
  96. final def withPatchedChildren(from: Int, newChildren: IndexedSeq[Node], replace: Int): Elem

    Shorthand for withChildren(children.patch(from, newChildren, replace))

    Shorthand for withChildren(children.patch(from, newChildren, replace))

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  97. final def withUpdatedChildren(index: Int, newChild: Node): Elem

    Shorthand for withChildren(children.updated(index, newChild))

    Shorthand for withChildren(children.updated(index, newChild))

    Definition Classes
    UpdatableElemLikeUpdatableElemApi

Deprecated Value Members

  1. def productElements: Iterator[Any]

    Definition Classes
    Product
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) use productIterator instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HasText

Inherited from UpdatableElemLike[Node, Elem]

Inherited from UpdatableElemApi[Node, Elem]

Inherited from PathAwareElemLike[Elem]

Inherited from PathAwareElemApi[Elem]

Inherited from ElemLike[Elem]

Inherited from ElemApi[Elem]

Inherited from ParentElemLike[Elem]

Inherited from ParentElemApi[Elem]

Inherited from Node

Inherited from Immutable

Inherited from AnyRef

Inherited from Any