org.danielnixon.saferdom.impl.lib

SaferTreeWalker

implicit final class SaferTreeWalker extends AnyVal

See also

https://dom.spec.whatwg.org/#treewalker

Linear Supertypes
AnyVal, NotNull, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SaferTreeWalker
  2. AnyVal
  3. NotNull
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SaferTreeWalker(value: TreeWalker)

Value Members

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

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

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

    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def filterOpt: Option[NodeFilter]

    The TreeWalker.

    The TreeWalker.filter read-only property returns a NodeFilter that is the filtering object associated with the TreeWalker.

    MDN

  6. def firstChildOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.firstChild() method moves the current Node to the first visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed.

    MDN

  7. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  8. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  9. def lastChildOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.lastChild() method moves the current Node to the last visible child of the current node, and returns the found child. It also moves the current node to this child. If no such child exists, returns null and the current node is not changed.

    MDN

  10. def nextNodeOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.nextNode() method moves the current Node to the next visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists, returns null and the current node is not changed.

    MDN

  11. def nextSiblingOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.nextSibling() method moves the current Node to its next sibling, if any, and returns the found sibling. If there is no such node, return null and the current node is not changed.

    MDN

  12. def parentNodeOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.parentNode() method moves the current Node to the first visible ancestor node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists, or if it is before that the root node defined at the object construction, returns null and the current node is not changed.

    MDN

  13. def previousNodeOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.previousNode() method moves the current Node to the previous visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists,or if it is before that the root node defined at the object construction, returns null and the current node is not changed.

    MDN

  14. def previousSiblingOpt(): Option[Node]

    The TreeWalker.

    The TreeWalker.previousSibling() method moves the current Node to its previous sibling, if any, and returns the found sibling. If there is no such node, return null and the current node is not changed.

    MDN

  15. def toString(): String

    Definition Classes
    Any
  16. val value: TreeWalker

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

Ungrouped