Class

eu.cdevreeze.yaidom.saxon

SaxonElem

Related Doc: package saxon

Permalink

final class SaxonElem extends SaxonNode with Elem with SaxonCanBeDocumentChild

Saxon NodeInfo element wrapper. It is efficient, because of an entirely custom query API implementation tailored to Saxon.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SaxonElem
  2. SaxonCanBeDocumentChild
  3. Elem
  4. BackingElemApi
  5. HasParentApi
  6. IndexedScopedElemApi
  7. IndexedClarkElemApi
  8. Elem
  9. ScopedElemApi
  10. HasScopeApi
  11. HasQNameApi
  12. Elem
  13. HasChildNodesApi
  14. AnyElemNodeApi
  15. ClarkElemApi
  16. HasTextApi
  17. HasENameApi
  18. IsNavigableApi
  19. ElemApi
  20. AnyElemApi
  21. Elem
  22. CanBeDocumentChild
  23. CanBeDocumentChild
  24. CanBeDocumentChild
  25. CanBeDocumentChild
  26. SaxonNode
  27. Node
  28. Node
  29. Node
  30. Node
  31. AnyRef
  32. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SaxonElem(wrappedNode: NodeInfo)

    Permalink

Type Members

  1. type ThisElem = SaxonElem

    Permalink

    The element type itself.

    The element type itself. It must be restricted to a sub-type of the query API trait in question.

    Concrete element classes will restrict this type to that element class itself.

    Definition Classes
    SaxonElemElemBackingElemApiHasParentApiIndexedScopedElemApiIndexedClarkElemApiElemScopedElemApiElemHasChildNodesApiClarkElemApiIsNavigableApiElemApiAnyElemApi
  2. type ThisNode = SaxonNode

    Permalink

    The node type, that is a super-type of the element type, but also of corresponding text node types etc.

    The node type, that is a super-type of the element type, but also of corresponding text node types etc.

    Definition Classes
    SaxonElemElemElemElemAnyElemNodeApi

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def \(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    Shorthand for filterChildElems(p).

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

    Definition Classes
    SaxonElemElemApi
  5. def \@(expandedName: EName): Option[String]

    Permalink

    Shorthand for attributeOption(expandedName).

    Shorthand for attributeOption(expandedName).

    Definition Classes
    SaxonElemHasENameApi
  6. def \\(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    Shorthand for filterElemsOrSelf(p).

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

    Definition Classes
    SaxonElemElemApi
  7. def \\!(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    Shorthand for findTopmostElemsOrSelf(p).

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

    Definition Classes
    SaxonElemElemApi
  8. def ancestors: IndexedSeq[ThisElem]

    Permalink

    Returns ancestorsOrSelf.drop(1)

    Returns ancestorsOrSelf.drop(1)

    Definition Classes
    SaxonElemHasParentApi
  9. def ancestorsOrSelf: IndexedSeq[ThisElem]

    Permalink

    Returns all ancestor elements or self, starting with this element, then the parent, if any, and ending with the root element.

    Returns all ancestor elements or self, starting with this element, then the parent, if any, and ending with the root element.

    Definition Classes
    SaxonElemHasParentApi
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def attribute(expandedName: EName): String

    Permalink

    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
    SaxonElemHasENameApi
  12. def attributeAsQName(expandedName: EName): QName

    Permalink

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

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

    Definition Classes
    SaxonElemScopedElemApi
  13. def attributeAsQNameOption(expandedName: EName): Option[QName]

    Permalink

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

    Returns the QName value of the attribute with the given expanded name, if any, wrapped in an Option. If the attribute exists, but its value is not a QName, an exception is thrown.

    Definition Classes
    SaxonElemScopedElemApi
  14. def attributeAsResolvedQName(expandedName: EName): EName

    Permalink

    Returns the resolved QName value (as EName) of the attribute with the given expanded name, and throws an exception otherwise

    Returns the resolved QName value (as EName) of the attribute with the given expanded name, and throws an exception otherwise

    Definition Classes
    SaxonElemScopedElemApi
  15. def attributeAsResolvedQNameOption(expandedName: EName): Option[EName]

    Permalink

    Returns the resolved QName value (as EName) of the attribute with the given expanded name, if any, wrapped in an Option.

    Returns the resolved QName value (as EName) of the attribute with the given expanded name, if any, wrapped in an Option. None is returned if the attribute does not exist. If the QName value cannot be resolved given the scope of the element, an exception is thrown.

    Definition Classes
    SaxonElemScopedElemApi
  16. def attributeOption(expandedName: EName): Option[String]

    Permalink

    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
    SaxonElemHasENameApi
  17. def attributes: IndexedSeq[(QName, String)]

    Permalink

    The attributes of the element as mapping from QNames to values

    The attributes of the element as mapping from QNames to values

    Definition Classes
    SaxonElemHasQNameApi
  18. def baseUri: URI

    Permalink

    The base URI, defaulting to the empty URI if absent

    The base URI, defaulting to the empty URI if absent

    Definition Classes
    SaxonElemIndexedClarkElemApi
  19. def baseUriOption: Option[URI]

    Permalink

    Returns the optional base URI, computed from the document URI, if any, and the XML base attributes of the ancestors, if any.

    Returns the optional base URI, computed from the document URI, if any, and the XML base attributes of the ancestors, if any.

    Definition Classes
    SaxonElemIndexedClarkElemApi
  20. final def children: IndexedSeq[SaxonNode]

    Permalink
    Definition Classes
    SaxonNode
  21. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def commentChildren: IndexedSeq[SaxonComment]

    Permalink

    Returns the comment children

  23. def docUri: URI

    Permalink

    The document URI, defaulting to the empty URI if absent

    The document URI, defaulting to the empty URI if absent

    Definition Classes
    SaxonElemIndexedClarkElemApi
  24. def docUriOption: Option[URI]

    Permalink

    The optional document URI of the containing document, if any

    The optional document URI of the containing document, if any

    Definition Classes
    SaxonElemIndexedClarkElemApi
  25. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def equals(obj: Any): Boolean

    Permalink
    Definition Classes
    SaxonNode → AnyRef → Any
  27. def filterChildElems(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    Returns the child elements obeying the given predicate.

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

    def filterChildElems(p: ThisElem => Boolean): immutable.IndexedSeq[ThisElem] =
      this.findAllChildElems.filter(p)
    Definition Classes
    SaxonElemElemApi
  28. def filterElems(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    Returns the descendant elements obeying the given predicate, in document order.

    Returns the descendant elements obeying the given predicate, in document order. This method could be defined as:

    this.findAllChildElems flatMap (_.filterElemsOrSelf(p))
    Definition Classes
    SaxonElemElemApi
  29. final def filterElemsByAxisAndPredicate(axisNumber: Byte, p: (SaxonElem) ⇒ Boolean): IndexedSeq[SaxonElem]

    Permalink
    Attributes
    protected
    Definition Classes
    SaxonNode
  30. def filterElemsOrSelf(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    Returns the descendant-or-self elements obeying the given predicate, in document order.

    Returns the descendant-or-self elements obeying the given predicate, in document order. This method could be defined as:

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

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

    Definition Classes
    SaxonElemElemApi
  31. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. def findAllChildElems: IndexedSeq[ThisElem]

    Permalink

    Core method that returns all child elements, in the correct order.

    Core method that returns all child elements, in the correct order. Other operations can be defined in terms of this one.

    Definition Classes
    SaxonElemElemApi
  33. def findAllChildElemsWithPathEntries: IndexedSeq[(ThisElem, Entry)]

    Permalink

    Returns all child elements paired with their path entries.

    Returns all child elements paired with their path entries.

    Definition Classes
    SaxonElemIsNavigableApi
  34. def findAllElems: IndexedSeq[ThisElem]

    Permalink

    Returns all descendant elements (not including this element), in document order.

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

    Definition Classes
    SaxonElemElemApi
  35. def findAllElemsOrSelf: IndexedSeq[ThisElem]

    Permalink

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

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

    Definition Classes
    SaxonElemElemApi
  36. def findAncestor(p: (ThisElem) ⇒ Boolean): Option[ThisElem]

    Permalink

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

    Returns the first found ancestor element obeying the given predicate, if any, wrapped in an Option. Searching starts with the parent of this element, if applicable, then the grandparent, if applicable, and so on.

    Definition Classes
    SaxonElemHasParentApi
  37. def findAncestorOrSelf(p: (ThisElem) ⇒ Boolean): Option[ThisElem]

    Permalink

    Returns the first found ancestor-or-self element obeying the given predicate, if any, wrapped in an Option.

    Returns the first found ancestor-or-self element obeying the given predicate, if any, wrapped in an Option. Searching starts with this element, then the parent, if applicable, and so on.

    Definition Classes
    SaxonElemHasParentApi
  38. def findAttributeByLocalName(localName: String): Option[String]

    Permalink

    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
    SaxonElemHasENameApi
  39. def findChildElem(p: (ThisElem) ⇒ Boolean): Option[ThisElem]

    Permalink

    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
    SaxonElemElemApi
  40. def findChildElemByPathEntry(entry: Entry): Option[ThisElem]

    Permalink

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

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

    Typically this method must be very efficient, in order for methods like findElemOrSelfByPath to be efficient.

    Definition Classes
    SaxonElemIsNavigableApi
  41. def findElem(p: (ThisElem) ⇒ Boolean): Option[ThisElem]

    Permalink

    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
    SaxonElemElemApi
  42. final def findElemByAxisAndPredicate(axisNumber: Byte, p: (SaxonElem) ⇒ Boolean): Option[SaxonElem]

    Permalink
    Attributes
    protected
    Definition Classes
    SaxonNode
  43. def findElemOrSelf(p: (ThisElem) ⇒ Boolean): Option[ThisElem]

    Permalink

    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
    SaxonElemElemApi
  44. def findElemOrSelfByPath(path: Path): Option[ThisElem]

    Permalink

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

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

    That is, returns:

    findReverseAncestryOrSelfByPath(path).map(_.last)

    Note that for each non-empty Path, we have:

    findElemOrSelfByPath(path) ==
      findChildElemByPathEntry(path.firstEntry).
        flatMap(_.findElemOrSelfByPath(path.withoutFirstEntry))
    Definition Classes
    SaxonElemIsNavigableApi
  45. def findReverseAncestryOrSelfByPath(path: Path): Option[IndexedSeq[ThisElem]]

    Permalink

    Finds the reversed ancestry-or-self of the element with the given Path (where this element is the root), wrapped in an Option.

    Finds the reversed ancestry-or-self of the element with the given Path (where this element is the root), wrapped in an Option. None is returned if no element can be found at the given Path.

    Hence, the resulting element collection, if any, starts with this element and ends with the element at the given Path, relative to this element.

    This method comes in handy for (efficiently) computing base URIs, where the (reverse) ancestry-or-self is needed as input.

    Definition Classes
    SaxonElemIsNavigableApi
  46. def findTopmostElems(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

    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
    SaxonElemElemApi
  47. def findTopmostElemsOrSelf(p: (ThisElem) ⇒ Boolean): IndexedSeq[ThisElem]

    Permalink

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

    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: ThisElem => Boolean): immutable.IndexedSeq[ThisElem] =
      if (p(this)) Vector(this)
      else (this.findAllChildElems flatMap (_.findTopmostElemsOrSelf(p)))
    Definition Classes
    SaxonElemElemApi
  48. def getChildElem(p: (ThisElem) ⇒ Boolean): ThisElem

    Permalink

    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
    SaxonElemElemApi
  49. def getChildElemByPathEntry(entry: Entry): ThisElem

    Permalink

    Returns (the equivalent of) findChildElemByPathEntry(entry).get

    Returns (the equivalent of) findChildElemByPathEntry(entry).get

    Definition Classes
    SaxonElemIsNavigableApi
  50. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  51. def getElemOrSelfByPath(path: Path): ThisElem

    Permalink

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

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

    Definition Classes
    SaxonElemIsNavigableApi
  52. def getReverseAncestryOrSelfByPath(path: Path): IndexedSeq[ThisElem]

    Permalink

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

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

    Definition Classes
    SaxonElemIsNavigableApi
  53. final def hashCode(): Int

    Permalink
    Definition Classes
    SaxonNode → AnyRef → Any
  54. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  55. def localName: String

    Permalink

    The local name, that is, the local part of the EName

    The local name, that is, the local part of the EName

    Definition Classes
    SaxonElemHasENameApi
  56. def namespaces: Declarations

    Permalink

    Returns the namespaces declared in this element.

    Returns the namespaces declared in this element.

    If the original parsed XML document contained duplicate namespace declarations (i.e. namespace declarations that are the same as some namespace declarations in their context), these duplicate namespace declarations were lost during parsing of the XML into an Elem tree. They therefore do not occur in the namespace declarations returned by this method.

    Definition Classes
    SaxonElemIndexedScopedElemApi
  57. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  58. def nodeInfo2EName(nodeInfo: NodeInfo): EName

    Permalink
    Attributes
    protected
    Definition Classes
    SaxonNode
  59. def nodeInfo2QName(nodeInfo: NodeInfo): QName

    Permalink
    Attributes
    protected
    Definition Classes
    SaxonNode
  60. def normalizedText: String

    Permalink

    Returns XmlStringUtils.normalizeString(text).

    Returns XmlStringUtils.normalizeString(text).

    Definition Classes
    SaxonElemHasTextApi
  61. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  63. def parent: ThisElem

    Permalink

    Returns the equivalent parentOption.get, throwing an exception if this is the root element

    Returns the equivalent parentOption.get, throwing an exception if this is the root element

    Definition Classes
    SaxonElemHasParentApi
  64. def parentBaseUriOption: Option[URI]

    Permalink

    Returns the optional parent element base URI, computed from the document URI, if any, and the XML base attributes of the ancestors, if any.

    Returns the optional parent element base URI, computed from the document URI, if any, and the XML base attributes of the ancestors, if any.

    Definition Classes
    SaxonElemIndexedClarkElemApi
  65. def parentOption: Option[ThisElem]

    Permalink

    Returns the parent element, if any, wrapped in an Option

    Returns the parent element, if any, wrapped in an Option

    Definition Classes
    SaxonElemHasParentApi
  66. def path: Path

    Permalink

    The path of this element, relative to the root element

    The path of this element, relative to the root element

    Definition Classes
    SaxonElemIndexedClarkElemApi
  67. def qname: QName

    Permalink

    The QName of the element

    The QName of the element

    Definition Classes
    SaxonElemHasQNameApi
  68. def resolvedAttributes: IndexedSeq[(EName, String)]

    Permalink

    The resolved attributes of the element as mapping from ENames to values

    The resolved attributes of the element as mapping from ENames to values

    Definition Classes
    SaxonElemHasENameApi
  69. def resolvedName: EName

    Permalink

    The EName of the element

    The EName of the element

    Definition Classes
    SaxonElemHasENameApi
  70. def reverseAncestry: IndexedSeq[ThisElem]

    Permalink

    Returns the reversed ancestor elements.

    Returns the reversed ancestor elements. That is, returns:

    reverseAncestryOrSelf.init
    Definition Classes
    SaxonElemIndexedClarkElemApi
  71. def reverseAncestryENames: IndexedSeq[EName]

    Permalink

    Returns the ENames of the ancestry reversed, starting with the root element and ending with the parent of this element, if any.

    Returns the ENames of the ancestry reversed, starting with the root element and ending with the parent of this element, if any.

    That is, returns:

    reverseAncestryOrSelfENames.dropRight(1)
    Definition Classes
    SaxonElemIndexedClarkElemApi
  72. def reverseAncestryOrSelf: IndexedSeq[ThisElem]

    Permalink

    Returns the reversed ancestor-or-self elements.

    Returns the reversed ancestor-or-self elements. That is, returns:

    rootElem.findReverseAncestryOrSelfByPath(path).get
    Definition Classes
    SaxonElemIndexedClarkElemApi
  73. def reverseAncestryOrSelfENames: IndexedSeq[EName]

    Permalink

    Returns the ENames of the ancestry-or-self reversed, starting with the root element and ending with this element.

    Returns the ENames of the ancestry-or-self reversed, starting with the root element and ending with this element.

    That is, returns:

    rootElem.resolvedName +: path.entries.map(_.elementName)

    This is equal to:

    reverseAncestryOrSelf.map(_.resolvedName)
    Definition Classes
    SaxonElemIndexedClarkElemApi
  74. def rootElem: ThisElem

    Permalink

    The root element

    The root element

    Definition Classes
    SaxonElemIndexedClarkElemApi
  75. def scope: Scope

    Permalink

    The Scope stored with the element

    The Scope stored with the element

    Definition Classes
    SaxonElemHasScopeApi
  76. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  77. def text: String

    Permalink

    Returns the concatenation of the text values of (the implicit) text children, including whitespace and CData.

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

    Therefore, element children are ignored and do not contribute to the resulting text string.

    Definition Classes
    SaxonElemHasTextApi
  78. def textAsQName: QName

    Permalink

    Returns QName(text.trim)

    Returns QName(text.trim)

    Definition Classes
    SaxonElemScopedElemApi
  79. def textAsResolvedQName: EName

    Permalink

    Returns the equivalent of scope.resolveQNameOption(textAsQName).get

    Returns the equivalent of scope.resolveQNameOption(textAsQName).get

    Definition Classes
    SaxonElemScopedElemApi
  80. def textChildren: IndexedSeq[SaxonText]

    Permalink

    Returns the text children

  81. def thisElem: ThisElem

    Permalink

    This element itself.

    This element itself.

    Definition Classes
    SaxonElemAnyElemApi
  82. final def toString(): String

    Permalink
    Definition Classes
    SaxonNode → AnyRef → Any
  83. def trimmedText: String

    Permalink

    Returns text.trim.

    Returns text.trim.

    Definition Classes
    SaxonElemHasTextApi
  84. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  87. val wrappedNode: NodeInfo

    Permalink
    Definition Classes
    SaxonElemSaxonNode

Inherited from SaxonCanBeDocumentChild

Inherited from Elem

Inherited from BackingElemApi

Inherited from HasParentApi

Inherited from IndexedScopedElemApi

Inherited from IndexedClarkElemApi

Inherited from Elem

Inherited from ScopedElemApi

Inherited from HasScopeApi

Inherited from HasQNameApi

Inherited from Elem

Inherited from HasChildNodesApi

Inherited from AnyElemNodeApi

Inherited from ClarkElemApi

Inherited from HasTextApi

Inherited from HasENameApi

Inherited from IsNavigableApi

Inherited from ElemApi

Inherited from AnyElemApi

Inherited from Elem

Inherited from CanBeDocumentChild

Inherited from CanBeDocumentChild

Inherited from CanBeDocumentChild

Inherited from CanBeDocumentChild

Inherited from SaxonNode

Inherited from Node

Inherited from Node

Inherited from Node

Inherited from Node

Inherited from AnyRef

Inherited from Any

Ungrouped