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 org.apache.servicemix.bundles.jackson-module-scala
Show all versions of org.apache.servicemix.bundles.jackson-module-scala
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.fasterxml.jackson.module.scala
import com.fasterxml.jackson.module.scala.deser.UntypedObjectDeserializerModule
/**
* 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 IteratorModule
with EnumerationModule
with OptionModule
with SeqModule
with IterableModule
with TupleModule
with MapModule
with CaseClassModule
with SetModule
with UntypedObjectDeserializerModule
{
override def getModuleName = "DefaultScalaModule"
}
object DefaultScalaModule extends DefaultScalaModule
© 2015 - 2025 Weber Informatics LLC | Privacy Policy