com.fasterxml.jackson.module.scala.TupleModule.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-module-scala Show documentation
Show all versions of jackson-module-scala Show documentation
Add-on module for Jackson (http://jackson.codehaus.org) to support
Scala (http://www.scala-lang.org/) data types.
package com.fasterxml.jackson.module.scala
import deser.TupleDeserializerModule
import ser.TupleSerializerModule
/**
* Adds support for serializing and deserializing Scala Tuples.
*/
trait TupleModule extends TupleSerializerModule with TupleDeserializerModule {
}