PathFormat

play.api.libs.json.PathFormat
trait PathFormat

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object Format.type

Members list

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]