object CPath
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CPath
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- trait CPathTree[A] extends AnyRef
- case class FieldNode[A](field: CPathField, children: Seq[CPathTree[A]]) extends CPathTree[A] with Product with Serializable
- case class IndexNode[A](index: CPathIndex, children: Seq[CPathTree[A]]) extends CPathTree[A] with Product with Serializable
- case class LeafNode[A](value: A) extends CPathTree[A] with Product with Serializable
- case class PathWithLeaf[A](path: Seq[CPathNode], value: A) extends Product with Serializable
- case class RootNode[A](children: Seq[CPathTree[A]]) extends CPathTree[A] with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val CPathDecomposer: Decomposer[CPath]
- implicit val CPathExtractor: Extractor[CPath]
- implicit val CPathOrdering: Ordering[CPath]
- val Identity: CPath
- implicit def apply(path: String): CPath
- def apply(path: blueeyes.json.JPath): CPath
- def apply(l: List[CPathNode]): CPath
- def apply(n: CPathNode*): CPath
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def makeStructuredTree[A](pathsAndValues: Seq[(CPath, A)]): RootNode[A]
- def makeTree[A](cpaths0: Seq[CPath], values: Seq[A]): CPathTree[A]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- implicit def singleNodePath(node: CPathNode): CPath
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def unapplySeq(path: String): Option[List[CPathNode]]
- def unapplySeq(path: CPath): Option[List[CPathNode]]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- implicit object CPathOrder extends Order[CPath]