Packages

final class Simple extends NodeCursor

Linear Supertypes
NodeCursor, WithModifierSupport[XmlNode], VCursor[XmlNode, NodeCursor], Cursor[XmlNode], Serializable, Dynamic, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Simple
  2. NodeCursor
  3. WithModifierSupport
  4. VCursor
  5. Cursor
  6. Serializable
  7. Dynamic
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Simple(lastCursor: NodeCursor, lastOp: Op)

Type Members

  1. type Focus = XmlNode
    Definition Classes
    VCursorCursor

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def *: NodeCursor
    Definition Classes
    NodeCursor
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def \(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  6. def \\(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  7. def andThen(nextNodeCursor: NodeCursor): NodeCursor
    Definition Classes
    NodeCursor
  8. def apply(index: Int): NodeCursor
    Definition Classes
    NodeCursor
  9. def applyDynamic(nodeName: String)(index: Int): NodeCursor
    Definition Classes
    NodeCursor
  10. def as[T](implicit arg0: Decoder[T]): FreeCursor[Xml, T]

    Create a FreeCursor which represent a cursor with a free T type as result of the focusing, this implies that a Decoder instance is need to convert the fixed Xml type of the Cursor to the free T type of the FreeCursor.

    Create a FreeCursor which represent a cursor with a free T type as result of the focusing, this implies that a Decoder instance is need to convert the fixed Xml type of the Cursor to the free T type of the FreeCursor.

    So, practically speaking, when the FreeCursor is applied this Cursor is applied and the result is decoded using the specified Decoder for type T.

    T

    free type in which decode the current cursor result

    returns

    A new FreeCursor

    Definition Classes
    Cursor
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def atIndex(index: Int): NodeCursor
    Definition Classes
    NodeCursor
  13. def attr(key: String): AttrCursor
    Definition Classes
    NodeCursor
  14. def attrAt(index: Long): AttrCursor
    Definition Classes
    NodeCursor
  15. def attrHead: AttrCursor
    Definition Classes
    NodeCursor
  16. def attrLast: AttrCursor
    Definition Classes
    NodeCursor
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  18. def deepDown(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  19. def down(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  20. def downPath(path: String): NodeCursor
    Definition Classes
    NodeCursor
  21. def downWildcard: NodeCursor
    Definition Classes
    NodeCursor
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def equals(obj: Any): Boolean
    Definition Classes
    NodeCursor → AnyRef → Any
  24. def filter(p: (XmlNode) => Boolean): NodeCursor
    Definition Classes
    NodeCursor
  25. def find(p: (XmlNode) => Boolean): NodeCursor
    Definition Classes
    NodeCursor
  26. def focus(ns: XmlNode): Result[XmlNode]

    Apply the current cursor to the specified input.

    Apply the current cursor to the specified input. This allows to select a precise part of the Xml tree.

    The method is pure and return a Left when the focusing fails

    returns

    Right when succeed Left when fail

    Definition Classes
    SimpleCursor
  27. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  29. def head: NodeCursor
    Definition Classes
    NodeCursor
  30. def history: List[Op]
    Definition Classes
    SimpleNodeCursor
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. val isRoot: Boolean
    Definition Classes
    NodeCursor
  33. def last: NodeCursor
    Definition Classes
    NodeCursor
  34. val lastCursor: NodeCursor
    Attributes
    protected
    Definition Classes
    SimpleVCursor
  35. val lastOp: Op
    Attributes
    protected
  36. def modify(modifier: Endo[XmlNode]): Modifier[XmlNode]
    Definition Classes
    NodeCursor → WithModifierSupport
  37. def modifyGroup(modifier: Endo[XmlNode.Group]): Modifier[XmlNode]
    Definition Classes
    NodeCursor
  38. def modifyNode(modifier: Endo[Node]): Modifier[XmlNode]
    Definition Classes
    NodeCursor
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def noop: NodeCursor
    Definition Classes
    NodeCursor
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  43. final lazy val path: String

    A String representation of the cursor.

    A String representation of the cursor.

    returns

    a String which represent the cursor path

    Definition Classes
    NodeCursorCursor
  44. def selectDynamic(nodeName: String): NodeCursor
    Definition Classes
    NodeCursor
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def text: TextCursor
    Definition Classes
    NodeCursor
  47. final def toString(): String
    Definition Classes
    Cursor → AnyRef → Any
  48. final def up: NodeCursor
    Definition Classes
    VCursor
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. def |(p: (XmlNode) => Boolean): NodeCursor
    Definition Classes
    NodeCursor

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from NodeCursor

Inherited from WithModifierSupport[XmlNode]

Inherited from VCursor[XmlNode, NodeCursor]

Inherited from Cursor[XmlNode]

Inherited from Serializable

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Ungrouped