play.api.data.mapping

Path

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
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Deferred[I] extends AnyRef

    Definition Classes
    Path

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(other: Path): Path

    Definition Classes
    Path
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def \(child: PathNode): Path

    Definition Classes
    Path
  8. def \(idx: Int): Path

    Definition Classes
    Path
  9. def \(key: String): Path

    Definition Classes
    Path
  10. def apply(path: List[PathNode] = Nil): Path

  11. def apply(path: String): Path

  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def canEqual(o: Any): Boolean

    Definition Classes
    Path
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def compose(p: Path): Path

    Aggregate 2 paths

    Aggregate 2 paths

    (Path \ "foo" \ "bar").compose(Path \ "baz") == (Path \ "foo" \ "bar" \ "baz")
    Definition Classes
    Path
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(o: Any): Boolean

    Definition Classes
    Path → AnyRef → Any
  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def from[I]: Deferred[I]

    Definition Classes
    Path
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    Path → AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. val path: List[PathNode]

    Definition Classes
    Path
  27. def read[I, O](implicit r: (Path) ⇒ RuleLike[I, O]): Rule[I, O]

    Definition Classes
    Path
  28. def read[I, J, O](sub: ⇒ RuleLike[J, O])(implicit r: (Path) ⇒ RuleLike[I, J]): Rule[I, O]

    Definition Classes
    Path
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toString(): String

    Definition Classes
    Path → AnyRef → Any
  31. def unapply(p: Path): Option[List[PathNode]]

  32. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def write[O, J, I](format: ⇒ WriteLike[O, J])(implicit w: (Path) ⇒ WriteLike[J, I]): Write[O, I]

    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
  36. def write[O, I](implicit w: (Path) ⇒ WriteLike[O, I]): Write[O, I]

    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) mustEqual 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