com.fasterxml.jackson.module.scala.SeqModule.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.SeqDeserializerModule
import ser.IterableSerializerModule
/**
* Adds support for serializing and deserializing Scala sequences.
*/
trait SeqModule extends IterableSerializerModule with SeqDeserializerModule {
}