PathFormat

trait PathFormat
class Object
trait Matchable
class Any
object Format

Value members

Concrete methods

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]