Class GeoJsonObjectMapperModule

java.lang.Object
tools.jackson.databind.JacksonModule
tools.jackson.databind.module.SimpleModule
org.bremersee.geojson.GeoJsonObjectMapperModule
All Implemented Interfaces:
Serializable, tools.jackson.core.Versioned

public class GeoJsonObjectMapperModule extends tools.jackson.databind.module.SimpleModule
A Jackson JSON processor module that provides the processing (serialization and deserialization) of the following types.
  • Geometry
  • Point
  • LineString
  • Polygon
  • MultiPoint
  • MultiLineString
  • MultiPolygon
  • GeometryCollection
Author:
Christian Bremer
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class tools.jackson.databind.JacksonModule

    tools.jackson.databind.JacksonModule.SetupContext
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The constant TYPE_ID.

    Fields inherited from class tools.jackson.databind.module.SimpleModule

    _abstractTypes, _defaultNullKeySerializer, _defaultNullValueSerializer, _deserializerModifier, _deserializers, _id, _keyDeserializers, _keySerializers, _mixins, _name, _namingStrategy, _serializerModifier, _serializers, _subtypes, _valueInstantiators, _version
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor.
    GeoJsonObjectMapperModule(boolean withBoundingBox, boolean useBigDecimal)
    Instantiates a new geo json object mapper module.
    GeoJsonObjectMapperModule(org.locationtech.jts.geom.GeometryFactory geometryFactory)
    Instantiates a new geo json object mapper module.
    GeoJsonObjectMapperModule(org.locationtech.jts.geom.GeometryFactory geometryFactory, boolean withBoundingBox, boolean useBigDecimal)
    Instantiates a new geo json object mapper module.
  • Method Summary

    Methods inherited from class tools.jackson.databind.module.SimpleModule

    _checkNotNull, addAbstractTypeMapping, addDeserializer, addKeyDeserializer, addKeySerializer, addSerializer, addSerializer, addValueInstantiator, getModuleName, getRegistrationId, registerSubtypes, registerSubtypes, registerSubtypes, setAbstractTypes, setDefaultNullKeySerializer, setDefaultNullValueSerializer, setDeserializerModifier, setDeserializers, setKeyDeserializers, setKeySerializers, setMixInAnnotation, setNamingStrategy, setSerializerModifier, setSerializers, setupModule, setValueInstantiators, version

    Methods inherited from class tools.jackson.databind.JacksonModule

    getDependencies

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • TYPE_ID

      public static final String TYPE_ID
      The constant TYPE_ID.
  • Constructor Details

    • GeoJsonObjectMapperModule

      public GeoJsonObjectMapperModule()
      Default constructor.
    • GeoJsonObjectMapperModule

      public GeoJsonObjectMapperModule(org.locationtech.jts.geom.GeometryFactory geometryFactory)
      Instantiates a new geo json object mapper module.
      Parameters:
      geometryFactory - the geometry factory
    • GeoJsonObjectMapperModule

      public GeoJsonObjectMapperModule(boolean withBoundingBox, boolean useBigDecimal)
      Instantiates a new geo json object mapper module.
      Parameters:
      withBoundingBox - with bounding box
      useBigDecimal - the use big decimal
    • GeoJsonObjectMapperModule

      public GeoJsonObjectMapperModule(org.locationtech.jts.geom.GeometryFactory geometryFactory, boolean withBoundingBox, boolean useBigDecimal)
      Instantiates a new geo json object mapper module.
      Parameters:
      geometryFactory - the geometry factory
      withBoundingBox - the with bounding box
      useBigDecimal - the use big decimal