sjsonnew

BasicJsonProtocol

object BasicJsonProtocol extends BasicJsonProtocol

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicJsonProtocol
  2. BasicJsonProtocol
  3. IsoLListFormats
  4. UnionFormats
  5. AdditionalFormats
  6. CollectionFormats
  7. TupleFormats
  8. StandardFormats
  9. PrimitiveFormats
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class OptionFormat[A] extends JsonFormat[Option[A]]

    Definition Classes
    StandardFormats

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. implicit object BigDecimalJsonFormat extends JsonFormat[BigDecimal]

    Definition Classes
    PrimitiveFormats
  7. implicit object BigIntJsonFormat extends JsonFormat[BigInt]

    Definition Classes
    PrimitiveFormats
  8. implicit object BooleanJsonFormat extends JsonFormat[Boolean]

    Definition Classes
    PrimitiveFormats
  9. implicit object ByteJsonFormat extends JsonFormat[Byte]

    Definition Classes
    PrimitiveFormats
  10. implicit object CharJsonFormat extends JsonFormat[Char]

    Definition Classes
    PrimitiveFormats
  11. implicit object DoubleJsonFormat extends JsonFormat[Double]

    Definition Classes
    PrimitiveFormats
  12. implicit object FloatJsonFormat extends JsonFormat[Float]

    Definition Classes
    PrimitiveFormats
  13. implicit object IntJsonFormat extends JsonFormat[Int]

    Definition Classes
    PrimitiveFormats
  14. implicit object LongJsonFormat extends JsonFormat[Long]

    Definition Classes
    PrimitiveFormats
  15. implicit object ShortJsonFormat extends JsonFormat[Short]

    Definition Classes
    PrimitiveFormats
  16. implicit object StringJsonFormat extends JsonFormat[String]

    Definition Classes
    PrimitiveFormats
  17. implicit object SymbolJsonFormat extends JsonFormat[Symbol]

    Definition Classes
    PrimitiveFormats
  18. implicit object UnitJsonFormat extends JsonFormat[Unit]

    Definition Classes
    PrimitiveFormats
  19. implicit def arrayFormat[A](implicit arg0: JsonFormat[A], arg1: ClassManifest[A]): RootJsonFormat[Array[A]] { lazy val elemFormat: sjsonnew.JsonFormat[A] }

    Supplies the JsonFormat for Arrays.

    Supplies the JsonFormat for Arrays.

    Definition Classes
    CollectionFormats
  20. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  21. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. implicit def eitherFormat[A, B](implicit arg0: JF[A], arg1: JF[B]): JF[Either[A, B]] { ... /* 2 definitions in type refinement */ }

    Definition Classes
    StandardFormats
  23. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  25. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. implicit def immIndexedSeqFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[IndexedSeq[T]]

    Definition Classes
    CollectionFormats
  29. implicit def immIterableFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Iterable[T]]

    Definition Classes
    CollectionFormats
  30. implicit def immLinearSeqFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[LinearSeq[T]]

    Definition Classes
    CollectionFormats
  31. implicit def immSeqFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Seq[T]]

    Definition Classes
    CollectionFormats
  32. implicit def immSetFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Set[T]]

    Definition Classes
    CollectionFormats
  33. implicit def indexedSeqFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[IndexedSeq[T]]

    Definition Classes
    CollectionFormats
  34. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  35. implicit def isolistFormat[A](implicit arg0: IsoLList[A]): JsonFormat[A]

    Definition Classes
    IsoLListFormats
  36. implicit def iterableFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Iterable[T]]

    Definition Classes
    CollectionFormats
  37. def jsonFormat[A](reader: JsonReader[A], writer: JsonWriter[A]): JsonFormat[A]

    Constructs a JsonFormat from its two parts, JsonReader and JsonWriter.

    Constructs a JsonFormat from its two parts, JsonReader and JsonWriter.

    Definition Classes
    AdditionalFormats
  38. def lazyFormat[A](format: ⇒ JsonFormat[A]): JsonFormat[A] { lazy val delegate: sjsonnew.JsonFormat[A] }

    Lazy wrapper around serialization.

    Lazy wrapper around serialization. Useful when you want to serialize (mutually) recursive structures.

    Definition Classes
    AdditionalFormats
  39. def lift[A <: AnyRef](reader: RootJsonReader[A]): RootJsonFormat[A]

    Turns a RootJsonReader into a RootJsonFormat that throws an UnsupportedOperationException for writes.

    Turns a RootJsonReader into a RootJsonFormat that throws an UnsupportedOperationException for writes.

    Definition Classes
    AdditionalFormats
  40. def lift[A <: AnyRef](reader: JsonReader[A]): JsonFormat[A]

    Turns a JsonReader into a JsonFormat that throws an UnsupportedOperationException for writes.

    Turns a JsonReader into a JsonFormat that throws an UnsupportedOperationException for writes.

    Definition Classes
    AdditionalFormats
  41. def lift[A](writer: RootJsonWriter[A]): RootJsonFormat[A]

    Turns a RootJsonWriter into a RootJsonFormat that throws an UnsupportedOperationException for reads.

    Turns a RootJsonWriter into a RootJsonFormat that throws an UnsupportedOperationException for reads.

    Definition Classes
    AdditionalFormats
  42. def lift[A](writer: JsonWriter[A]): JsonFormat[A]

    Turns a JsonWriter into a JsonFormat that throws an UnsupportedOperationException for reads.

    Turns a JsonWriter into a JsonFormat that throws an UnsupportedOperationException for reads.

    Definition Classes
    AdditionalFormats
  43. implicit def linearSeqFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[LinearSeq[T]]

    Definition Classes
    CollectionFormats
  44. implicit def listFormat[A](implicit arg0: JsonFormat[A]): RootJsonFormat[List[A]] { lazy val elemFormat: sjsonnew.JsonFormat[A] }

    Supplies the JsonFormat for Lists.

    Supplies the JsonFormat for Lists.

    Definition Classes
    CollectionFormats
  45. implicit def mapFormat[K, V](implicit arg0: JsonFormat[K], arg1: JsonFormat[V]): RootJsonFormat[Map[K, V]] { ... /* 2 definitions in type refinement */ }

    Supplies the JsonFormat for Maps.

    Supplies the JsonFormat for Maps. The implicitly available JsonFormat for the key type K must always write JsStrings, otherwise a sjsonnew.SerializationException will be thrown.

    Definition Classes
    CollectionFormats
  46. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  47. final def notify(): Unit

    Definition Classes
    AnyRef
  48. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  49. implicit def optionFormat[A](implicit arg0: JF[A]): JF[Option[A]]

    Definition Classes
    StandardFormats
  50. def rootFormat[A](format: JsonFormat[A]): RootJsonFormat[A]

    Explicitly turns a JsonFormat into a RootJsonFormat.

    Explicitly turns a JsonFormat into a RootJsonFormat.

    Definition Classes
    AdditionalFormats
  51. def rootJsonFormat[T](reader: RootJsonReader[T], writer: RootJsonWriter[T]): RootJsonFormat[T]

    Constructs a RootJsonFormat from its two parts, RootJsonReader and RootJsonWriter.

    Constructs a RootJsonFormat from its two parts, RootJsonReader and RootJsonWriter.

    Definition Classes
    AdditionalFormats
  52. def safeReader[A](implicit arg0: JsonReader[A]): JsonReader[Either[Exception, A]]

    Wraps an existing JsonReader with Exception protection.

    Wraps an existing JsonReader with Exception protection.

    Definition Classes
    AdditionalFormats
  53. implicit def seqFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Seq[T]]

    Definition Classes
    CollectionFormats
  54. implicit def setFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Set[T]]

    Definition Classes
    CollectionFormats
  55. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  56. def toString(): String

    Definition Classes
    AnyRef → Any
  57. implicit def tuple10Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)]

    Definition Classes
    TupleFormats
  58. implicit def tuple11Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)]

    Definition Classes
    TupleFormats
  59. implicit def tuple12Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)]

    Definition Classes
    TupleFormats
  60. implicit def tuple13Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)]

    Definition Classes
    TupleFormats
  61. implicit def tuple14Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)]

    Definition Classes
    TupleFormats
  62. implicit def tuple15Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15)]

    Definition Classes
    TupleFormats
  63. implicit def tuple16Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16)]

    Definition Classes
    TupleFormats
  64. implicit def tuple17Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16], arg16: JF[A17]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17)]

    Definition Classes
    TupleFormats
  65. implicit def tuple18Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16], arg16: JF[A17], arg17: JF[A18]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18)]

    Definition Classes
    TupleFormats
  66. implicit def tuple19Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16], arg16: JF[A17], arg17: JF[A18], arg18: JF[A19]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19)]

    Definition Classes
    TupleFormats
  67. implicit def tuple1Format[A1](implicit arg0: JF[A1]): JF[(A1)]

    Definition Classes
    TupleFormats
  68. implicit def tuple20Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16], arg16: JF[A17], arg17: JF[A18], arg18: JF[A19], arg19: JF[A20]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20)]

    Definition Classes
    TupleFormats
  69. implicit def tuple21Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16], arg16: JF[A17], arg17: JF[A18], arg18: JF[A19], arg19: JF[A20], arg20: JF[A21]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21)]

    Definition Classes
    TupleFormats
  70. implicit def tuple22Format[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9], arg9: JF[A10], arg10: JF[A11], arg11: JF[A12], arg12: JF[A13], arg13: JF[A14], arg14: JF[A15], arg15: JF[A16], arg16: JF[A17], arg17: JF[A18], arg18: JF[A19], arg19: JF[A20], arg20: JF[A21], arg21: JF[A22]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22)]

    Definition Classes
    TupleFormats
  71. implicit def tuple2Format[A1, A2](implicit arg0: JF[A1], arg1: JF[A2]): JF[(A1, A2)]

    Definition Classes
    TupleFormats
  72. implicit def tuple3Format[A1, A2, A3](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3]): JF[(A1, A2, A3)]

    Definition Classes
    TupleFormats
  73. implicit def tuple4Format[A1, A2, A3, A4](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4]): JF[(A1, A2, A3, A4)]

    Definition Classes
    TupleFormats
  74. implicit def tuple5Format[A1, A2, A3, A4, A5](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5]): JF[(A1, A2, A3, A4, A5)]

    Definition Classes
    TupleFormats
  75. implicit def tuple6Format[A1, A2, A3, A4, A5, A6](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6]): JF[(A1, A2, A3, A4, A5, A6)]

    Definition Classes
    TupleFormats
  76. implicit def tuple7Format[A1, A2, A3, A4, A5, A6, A7](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7]): JF[(A1, A2, A3, A4, A5, A6, A7)]

    Definition Classes
    TupleFormats
  77. implicit def tuple8Format[A1, A2, A3, A4, A5, A6, A7, A8](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8]): JF[(A1, A2, A3, A4, A5, A6, A7, A8)]

    Definition Classes
    TupleFormats
  78. implicit def tuple9Format[A1, A2, A3, A4, A5, A6, A7, A8, A9](implicit arg0: JF[A1], arg1: JF[A2], arg2: JF[A3], arg3: JF[A4], arg4: JF[A5], arg5: JF[A6], arg6: JF[A7], arg7: JF[A8], arg8: JF[A9]): JF[(A1, A2, A3, A4, A5, A6, A7, A8, A9)]

    Definition Classes
    TupleFormats
  79. def unionFormat1[U, A1](implicit arg0: JF[A1], arg1: Manifest[A1]): JF[U]

    Definition Classes
    UnionFormats
  80. def unionFormat10[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10]): JF[U]

    Definition Classes
    UnionFormats
  81. def unionFormat11[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11]): JF[U]

    Definition Classes
    UnionFormats
  82. def unionFormat12[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12]): JF[U]

    Definition Classes
    UnionFormats
  83. def unionFormat13[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13]): JF[U]

    Definition Classes
    UnionFormats
  84. def unionFormat14[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14]): JF[U]

    Definition Classes
    UnionFormats
  85. def unionFormat15[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15]): JF[U]

    Definition Classes
    UnionFormats
  86. def unionFormat16[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16]): JF[U]

    Definition Classes
    UnionFormats
  87. def unionFormat17[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16], arg32: JF[A17], arg33: Manifest[A17]): JF[U]

    Definition Classes
    UnionFormats
  88. def unionFormat18[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16], arg32: JF[A17], arg33: Manifest[A17], arg34: JF[A18], arg35: Manifest[A18]): JF[U]

    Definition Classes
    UnionFormats
  89. def unionFormat19[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16], arg32: JF[A17], arg33: Manifest[A17], arg34: JF[A18], arg35: Manifest[A18], arg36: JF[A19], arg37: Manifest[A19]): JF[U]

    Definition Classes
    UnionFormats
  90. def unionFormat2[U, A1, A2](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2]): JF[U]

    Definition Classes
    UnionFormats
  91. def unionFormat20[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16], arg32: JF[A17], arg33: Manifest[A17], arg34: JF[A18], arg35: Manifest[A18], arg36: JF[A19], arg37: Manifest[A19], arg38: JF[A20], arg39: Manifest[A20]): JF[U]

    Definition Classes
    UnionFormats
  92. def unionFormat21[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16], arg32: JF[A17], arg33: Manifest[A17], arg34: JF[A18], arg35: Manifest[A18], arg36: JF[A19], arg37: Manifest[A19], arg38: JF[A20], arg39: Manifest[A20], arg40: JF[A21], arg41: Manifest[A21]): JF[U]

    Definition Classes
    UnionFormats
  93. def unionFormat22[U, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9], arg18: JF[A10], arg19: Manifest[A10], arg20: JF[A11], arg21: Manifest[A11], arg22: JF[A12], arg23: Manifest[A12], arg24: JF[A13], arg25: Manifest[A13], arg26: JF[A14], arg27: Manifest[A14], arg28: JF[A15], arg29: Manifest[A15], arg30: JF[A16], arg31: Manifest[A16], arg32: JF[A17], arg33: Manifest[A17], arg34: JF[A18], arg35: Manifest[A18], arg36: JF[A19], arg37: Manifest[A19], arg38: JF[A20], arg39: Manifest[A20], arg40: JF[A21], arg41: Manifest[A21], arg42: JF[A22], arg43: Manifest[A22]): JF[U]

    Definition Classes
    UnionFormats
  94. def unionFormat3[U, A1, A2, A3](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3]): JF[U]

    Definition Classes
    UnionFormats
  95. def unionFormat4[U, A1, A2, A3, A4](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4]): JF[U]

    Definition Classes
    UnionFormats
  96. def unionFormat5[U, A1, A2, A3, A4, A5](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5]): JF[U]

    Definition Classes
    UnionFormats
  97. def unionFormat6[U, A1, A2, A3, A4, A5, A6](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6]): JF[U]

    Definition Classes
    UnionFormats
  98. def unionFormat7[U, A1, A2, A3, A4, A5, A6, A7](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7]): JF[U]

    Definition Classes
    UnionFormats
  99. def unionFormat8[U, A1, A2, A3, A4, A5, A6, A7, A8](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8]): JF[U]

    Definition Classes
    UnionFormats
  100. def unionFormat9[U, A1, A2, A3, A4, A5, A6, A7, A8, A9](implicit arg0: JF[A1], arg1: Manifest[A1], arg2: JF[A2], arg3: Manifest[A2], arg4: JF[A3], arg5: Manifest[A3], arg6: JF[A4], arg7: Manifest[A4], arg8: JF[A5], arg9: Manifest[A5], arg10: JF[A6], arg11: Manifest[A6], arg12: JF[A7], arg13: Manifest[A7], arg14: JF[A8], arg15: Manifest[A8], arg16: JF[A9], arg17: Manifest[A9]): JF[U]

    Definition Classes
    UnionFormats
  101. implicit def vectorFormat[T](implicit arg0: JsonFormat[T]): RootJsonFormat[Vector[T]]

    Definition Classes
    CollectionFormats
  102. def viaSeq[I <: Iterable[A], A](f: (Seq[A]) ⇒ I)(implicit arg0: JsonFormat[A]): RootJsonFormat[I]

    A JsonFormat construction helper that creates a JsonFormat for an Iterable type I from a builder function Seq => I.

    A JsonFormat construction helper that creates a JsonFormat for an Iterable type I from a builder function Seq => I.

    Definition Classes
    CollectionFormats
  103. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  104. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  105. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BasicJsonProtocol

Inherited from IsoLListFormats

Inherited from UnionFormats

Inherited from AdditionalFormats

Inherited from CollectionFormats

Inherited from TupleFormats

Inherited from StandardFormats

Inherited from PrimitiveFormats

Inherited from AnyRef

Inherited from Any

Ungrouped