Path

final
class Path(val entries: List[String]) extends AnyVal

Path is a convenience wrapper to represent paths for lookups or changes in Value

Companion
object
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def \(entry: String): Path

Convenience DSL to build paths

Convenience DSL to build paths

def \\(that: Path): Path
def apply(): String

Retrieves the head path element

Retrieves the head path element

def isEmpty: Boolean
def next(): Path

Returns a new Path with the tail of this path

Returns a new Path with the tail of this path

def nonEmpty: Boolean
override
def toString: String
Definition Classes
Any

Concrete fields

val entries: List[String]