Object/Class

jto.validation

Path

Related Docs: class Path | package validation

Permalink

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

    Permalink
    Definition Classes
    Path

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    Path
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. def \(child: PathNode): Path

    Permalink
    Definition Classes
    Path
  6. def \(idx: Int): Path

    Permalink
    Definition Classes
    Path
  7. def \(key: String): Path

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

    Permalink
  9. def apply(path: String): Path

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def canEqual(o: Any): Boolean

    Permalink
    Definition Classes
    Path
  12. def clone(): AnyRef

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

    Permalink

    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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. val path: List[PathNode]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

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

    Permalink
  30. final def wait(): Unit

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

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

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

    Permalink

    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]

    Permalink

    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