final case class Path(elems: List[PathElement]) extends AnyVal with Product with Serializable
Data structure for representing path in a (possibly) nested object structure.
- elems
list of path elements
- Since
0.7.0
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Path
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Path(elems: List[PathElement])
- elems
list of path elements
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asString: String
Returns conventional string based representation of a path
Returns conventional string based representation of a path
- Since
0.7.0
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def prepend(pathElement: PathElement): Path
Prepend of error path with a path element
Prepend of error path with a path element
- pathElement
path element to be prepended
- returns
path with prepended path element
- Since
0.7.0
- def productElementNames: Iterator[String]
- Definition Classes
- Product