eu.cdevreeze.yaidom

Elem

final class Elem extends Node with UpdatableElemLike[Node, Elem] with HasText

Element node. An eu.cdevreeze.yaidom.Elem contains:

The eu.cdevreeze.yaidom.Scope is absolute, typically containing a lot more than the (implicit) eu.cdevreeze.yaidom.Declarations of this element.

Note that Elem instances are immutable, so they do not know about parent nodes. Moreover, Elems must be building blocks for larger (ancestor) Elems, and at the same time they must contain enough context for resolving element and attribute (un)qualified names. Therefore an Elem contains a Scope, and not a Declarations (whereas for ElemBuilder it is the other way around). Once an Elem tree is complete, the (implicit) Declarations of the element are parentElm.scope.relativize(this.scope).

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

The API is geared towards data-oriented XML that uses namespaces, and that typically is described in schemas (so that the user of this API knows the structure of the XML being processed). The methods that return an Option say so in their name.

No notion of (value) equality has been defined. When thinking about it, it is very hard to come up with any useful notion of equality for representations of XML elements. Think about prefixes, "ignorable whitespace", DTDs and XSDs, etc.

Use the constructor with care, because it is easy to use incorrectly (regarding passed Scopes, causing implicit namespace undeclarations). To construct Elems by hand, prefer using an ElemBuilder, via method NodeBuilder.elem. If Elems are still constructed manually (without using ElemBuilders), consider calling method notUndeclaringPrefixes afterwards, thus getting rid of unnecessary (implicit) namespace undeclarations. Typically, however, Elems are constructed by parsing an XML source.

Example

Below follows an example. This example queries for all book elements having a price below 90. It can be written as follows, assuming a book store Document with the appropriate structure:

val bookstoreElm = doc.documentElement
require(bookstoreElm.localName == "Bookstore")

val bookElms =
  for {
    bookElm <- bookstoreElm \ (_.localName == "Book")
    price <- bookElm \@ EName("Price")
    if price.toInt < 90
  } yield bookElm

For more examples, see the eu.cdevreeze.yaidom package documentation.

Self Type
Elem
Annotations
@SerialVersionUID( 1L )
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Elem
  2. HasText
  3. UpdatableElemLike
  4. UpdatableElemApi
  5. PathAwareElemLike
  6. PathAwareElemApi
  7. ElemLike
  8. ElemApi
  9. ParentElemLike
  10. ParentElemApi
  11. Node
  12. Serializable
  13. Serializable
  14. Immutable
  15. AnyRef
  16. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Elem(qname: QName, attributes: IndexedSeq[(QName, String)], scope: Scope, 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 attributeScope: Scope

    The attribute Scope, which is the same Scope but without the default namespace (which is not used for attributes)

  17. val attributes: IndexedSeq[(QName, String)]

  18. 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
  19. 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
  20. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. def commentChildren: IndexedSeq[Comment]

    Returns the comment children

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

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

    Definition Classes
    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[java.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(): 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
    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. def minusAttribute(attributeName: QName): Elem

    Functionally removes the given attribute, if present.

    Functionally removes the given attribute, if present.

    More precisely, returns withAttributes(self.attributes filterNot (_._1 == attributeName)).

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

    Definition Classes
    AnyRef
  71. final def normalizedText: String

    Returns XmlStringUtils.normalizeString(text).

    Returns XmlStringUtils.normalizeString(text).

    Definition Classes
    HasText
  72. def notUndeclaringPrefixes(parentScope: Scope): Elem

    Returns an "equivalent" Elem in which the implicit namespace declarations throughout the tree do not contain any prefixed namespace undeclarations, given the passed parent scope.

    Returns an "equivalent" Elem in which the implicit namespace declarations throughout the tree do not contain any prefixed namespace undeclarations, given the passed parent scope. Note that XML 1.0 does not allow prefix undeclarations.

  73. final def notify(): Unit

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

    Definition Classes
    AnyRef
  75. def plusAttribute(attributeName: QName, attributeValue: String): Elem

    Functionally adds or updates the given attribute.

    Functionally adds or updates the given attribute.

    More precisely, if an attribute with the same name exists at position idx (0-based), withAttributes(attributes.updated(idx, (attributeName -> attributeValue))) is returned. Otherwise, withAttributes(attributes :+ (attributeName -> attributeValue)) is returned.

  76. def plusAttributeOption(attributeName: QName, attributeValueOption: Option[String]): Elem

    Functionally adds or updates the given attribute, if a value is given.

    Functionally adds or updates the given attribute, if a value is given. That is, returns if (attributeValueOption.isEmpty) self else plusAttribute(attributeName, attributeValueOption.get).

  77. 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
  78. 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
  79. def prettify(indent: Int): Elem

    "Prettifies" this Elem.

    "Prettifies" this Elem. That is, first calls method removeAllInterElementWhitespace, and then transforms the result by inserting text nodes with newlines and whitespace for indentation.

  80. def processingInstructionChildren: IndexedSeq[ProcessingInstruction]

    Returns the processing instruction children

  81. val qname: QName

  82. def removeAllInterElementWhitespace: Elem

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

  83. val resolvedAttributes: IndexedSeq[(EName, String)]

    The attributes as an ordered mapping from ENames (instead of QNames) to values, obtained by resolving attribute QNames against the attribute scope

    The attributes as an ordered mapping from ENames (instead of QNames) to values, obtained by resolving attribute QNames against the attribute scope

    Definition Classes
    ElemElemLikeElemApi
  84. val resolvedName: EName

    The Elem name as EName, obtained by resolving the element QName against the Scope

    The Elem name as EName, obtained by resolving the element QName against the Scope

    Definition Classes
    ElemElemLikeElemApi
  85. val scope: Scope

  86. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  87. def text: String

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

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

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

    Returns the text children

  89. final def toString(): String

    Returns the tree representation string corresponding to this element, that is, toTreeRepr.

    Returns the tree representation string corresponding to this element, that is, toTreeRepr.

    Possibly expensive, especially for large XML trees! Note that the toString method is often called implicitly, for example in logging statements. So, if the toString method is not used carefully, OutOfMemoryErrors may occur.

    Definition Classes
    Node → AnyRef → Any
  90. final def toTreeRepr: String

    Same as toTreeRepr(emptyScope)

    Same as toTreeRepr(emptyScope)

    Definition Classes
    Node
  91. final def toTreeRepr(parentScope: Scope): String

    Returns the tree representation String, conforming to the tree representation DSL that creates NodeBuilders.

    Returns the tree representation String, conforming to the tree representation DSL that creates NodeBuilders. That is, it does not correspond to the tree representation DSL of Nodes, but of NodeBuilders!

    There are a couple of advantages of this method compared to some "toXmlString" method which returns the XML string:

    • The parsed XML tree is made explicit, which makes debugging far easier, especially since method toString delegates to this method
    • The output of method toTreeRepr clearly corresponds to a NodeBuilder, and can indeed be parsed into one
    • That toTreeRepr output is even valid Scala code
    • When parsing the string into a NodeBuilder, the following is out of scope: character escaping (for XML), entity resolving, "ignorable" whitespace handling, etc.
    Definition Classes
    Node
  92. 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
  93. final def trimmedText: String

    Returns text.trim.

    Returns text.trim.

    Definition Classes
    HasText
  94. 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
  95. final def updated(path: ElemPath, newElem: Elem): Elem

    Returns updated(path) { e => newElem }

    Returns updated(path) { e => newElem }

    Definition Classes
    UpdatableElemLikeUpdatableElemApi
  96. 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 eu.cdevreeze.yaidom.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 eu.cdevreeze.yaidom.ElemPath (compared to this element as root).

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  100. def withAttributes(newAttributes: IndexedSeq[(QName, String)]): Elem

    Creates a copy, but with the attributes passed as parameter newAttributes

  101. 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
  102. 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
  103. 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

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 Serializable

Inherited from Serializable

Inherited from Immutable

Inherited from AnyRef

Inherited from Any

Ungrouped