trait PathFormat extends AnyRef
- Source
- JsConstraints.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- PathFormat
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def at[A](path: JsPath)(implicit f: Format[A]): OFormat[A]
- def nullable[A](path: JsPath)(implicit f: Format[A]): OFormat[Option[A]]
- def nullableWithDefault[A](path: JsPath, defaultValue: => Option[A])(implicit f: Format[A]): OFormat[Option[A]]
- def withDefault[A](path: JsPath, defaultValue: => A)(implicit f: Format[A]): OFormat[A]