trait OptionHandlers extends AnyRef

Configure how options should be handled

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

Abstract Value Members

  1. abstract def readHandler[T](jsPath: JsPath)(implicit r: Reads[T]): Reads[Option[T]]
  2. abstract def writeHandler[T](jsPath: JsPath)(implicit writes: Writes[T]): OWrites[Option[T]]

Concrete Value Members

  1. final def formatHandler[T](jsPath: JsPath)(implicit format: Format[T]): OFormat[Option[T]]
  2. final def formatHandlerWithDefault[T](jsPath: JsPath, defaultValue: => Option[T])(implicit format: Format[T]): OFormat[Option[T]]
  3. def readHandlerWithDefault[T](jsPath: JsPath, defaultValue: => Option[T])(implicit r: Reads[T]): Reads[Option[T]]