MissingNode

case class MissingNode(nodeName: String, path: String) extends FailedNode with Missing
trait Serializable
trait Product
trait Equals
trait Missing
trait Failed
trait CursorResult[Nothing]
class Object
trait Matchable
class Any

Value members

Inherited methods

def attempt[U]: CursorResult[Either[Failed, U]]
Inherited from:
CursorResult
def attemptOption[U]: CursorResult[Option[U]]

Lift the result to Option[T], any error is mapped as None

Lift the result to Option[T], any error is mapped as None

Inherited from:
CursorResult
def flatMap[U](f: Nothing => CursorResult[U]): CursorResult[U]
Inherited from:
CursorResult
def fold[U](ifFocused: Nothing => U)(ifFailed: Failed => U): U
Inherited from:
CursorResult
def map[U](f: Nothing => U): CursorResult[U]
Inherited from:
CursorResult
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def recover[U](f: Failed => U): CursorResult[U]
Inherited from:
CursorResult
Inherited from:
CursorResult
def toOption[U]: Option[U]

Return an Option which contains a value only if the result is Focused

Return an Option which contains a value only if the result is Focused

Inherited from:
CursorResult
override def toString: String
Definition Classes
Inherited from:
CursorResult