object Path extends Path with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Path, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Path
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Path
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Deferred [I] extends AnyRef
    Definition Classes
    Path

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++(other: Path): Path
    Definition Classes
    Path
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def \(child: PathNode): Path
    Definition Classes
    Path
  6. def \(idx: Int): Path
    Definition Classes
    Path
  7. def \(key: String): Path
    Definition Classes
    Path
  8. def apply(path: List[PathNode] = Nil): Path
  9. def apply(path: String): Path
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def canEqual(o: Any): Boolean
    Definition Classes
    Path
  12. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def compose(p: Path): Path

    Aggregate 2 paths

    Aggregate 2 paths

    (Path \ "foo" \ "bar") .andThen(Path \ "baz") == (Path \ "foo" \ "bar" \ "baz")
    Definition Classes
    Path
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(o: Any): Boolean
    Definition Classes
    Path → AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def from[I]: Deferred[I]
    Definition Classes
    Path
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int
    Definition Classes
    Path → AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  24. val path: List[PathNode]
    Definition Classes
    Path
  25. def read[I, O](implicit r: (Path) ⇒ RuleLike[I, O]): Rule[I, O]
    Definition Classes
    Path
  26. def read[I, J, O](sub: ⇒ RuleLike[J, O])(implicit r: (Path) ⇒ RuleLike[I, J]): Rule[I, O]
    Definition Classes
    Path
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    Path → AnyRef → Any
  29. def unapply(p: Path): Option[List[PathNode]]
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def write[I, J, O](format: ⇒ WriteLike[I, J])(implicit w: (Path) ⇒ WriteLike[J, O]): Write[I, O]

    Creates a Writes the serialize data to the desired output type using a provided format.

    Creates a Writes the serialize data to the desired output type using a provided format. *

    val w = (Path \ "date").write(date("yyyy-MM-dd""))
    w.writes(new Date()) == Json.obj("date" -> "2013-10-3")
    Definition Classes
    Path
  34. def write[I, O](implicit w: (Path) ⇒ WriteLike[I, O]): Write[I, O]

    Creates a Writes the serialize data to the desired output type

    Creates a Writes the serialize data to the desired output type

    val contact = Contact("Julien", "Tournay")
    implicit def contactWrite = (Path \ "firstname").write[String, UrlFormEncoded]
    contactWrite.writes(contact) shouldBe Map("firstname" -> "Julien")
    Definition Classes
    Path

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Path

Inherited from AnyRef

Inherited from Any

Ungrouped