final case class ObjectWriter[T](fields: List[(String, T)] = Nil) extends AnyVal with Product with Serializable
- Source
- ObjectWriter.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ObjectWriter
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ObjectWriter(fields: List[(String, T)] = Nil)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def build(implicit builder: Builder[T]): T
- val fields: List[(String, T)]
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def write[A](key: String, value: Option[A])(implicit enc: Encoder[A, T]): ObjectWriter[T]
- def write[A](key: String, value: A)(implicit enc: Encoder[A, T]): ObjectWriter[T]