t

play.api.libs.json

PathFormat

trait PathFormat extends AnyRef

Source
JsConstraints.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PathFormat
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def at[A](path: JsPath)(implicit f: Format[A]): OFormat[A]
  2. def nullable[A](path: JsPath)(implicit f: Format[A]): OFormat[Option[A]]
  3. def nullableWithDefault[A](path: JsPath, defaultValue: => Option[A])(implicit f: Format[A]): OFormat[Option[A]]
  4. def withDefault[A](path: JsPath, defaultValue: => A)(implicit f: Format[A]): OFormat[A]