com.fasterxml.jackson.module.scala.DefaultScalaModule.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
/**
* Complete module with support for all features.
*
* This class aggregates all of the feature modules into a single concrete class.
* Its use is recommended for new users and users who want things to "just work".
* If more customized support is desired, consult each of the constituent traits.
*
* @see [[com.fasterxml.jackson.module.scala.JacksonModule]]
*
* @author Christopher Currie
* @since 1.9.0
*/
sealed class DefaultScalaModule
extends JacksonModule
with EnumerationModule
with OptionModule
with SeqModule
with IterableModule
with TupleModule
{
override def getModuleName = "DefaultScalaModule"
}
object DefaultScalaModule extends DefaultScalaModule