Package org.bremersee.geojson
Class GeoJsonObjectMapperModule
java.lang.Object
com.fasterxml.jackson.databind.Module
com.fasterxml.jackson.databind.module.SimpleModule
org.bremersee.geojson.GeoJsonObjectMapperModule
- All Implemented Interfaces:
com.fasterxml.jackson.core.Versioned,Serializable
public class GeoJsonObjectMapperModule
extends com.fasterxml.jackson.databind.module.SimpleModule
A Jackson JSON processor module that provides the processing (serialization and deserialization)
of the following types.
GeometryPointLineStringPolygonMultiPointMultiLineStringMultiPolygonGeometryCollection
- Author:
- Christian Bremer
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.Module
com.fasterxml.jackson.databind.Module.SetupContext -
Field Summary
FieldsFields inherited from class com.fasterxml.jackson.databind.module.SimpleModule
_abstractTypes, _deserializerModifier, _deserializers, _hasExplicitName, _keyDeserializers, _keySerializers, _mixins, _name, _namingStrategy, _serializerModifier, _serializers, _subtypes, _valueInstantiators, _version -
Constructor Summary
ConstructorsConstructorDescriptionDefault 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 com.fasterxml.jackson.databind.module.SimpleModule
_checkNotNull, addAbstractTypeMapping, addDeserializer, addKeyDeserializer, addKeySerializer, addSerializer, addSerializer, addValueInstantiator, getModuleName, getTypeId, registerSubtypes, registerSubtypes, registerSubtypes, setAbstractTypes, setDeserializerModifier, setDeserializers, setKeyDeserializers, setKeySerializers, setMixInAnnotation, setNamingStrategy, setSerializerModifier, setSerializers, setupModule, setValueInstantiators, versionMethods inherited from class com.fasterxml.jackson.databind.Module
getDependencies
-
Field Details
-
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 boxuseBigDecimal- 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 factorywithBoundingBox- the with bounding boxuseBigDecimal- the use big decimal
-