Skip to content

Latest commit

 

History

History
 
 

pcollections

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Jackson datatype module (jar) to support JSON serialization and deserialization of PCollections data types.

Licensed under Apache License 2.0

Status

Maven Central Javadoc

Usage

Maven dependency

To use module on Maven-based projects, use following dependency:

<dependency>
  <groupId>com.fasterxml.jackson.datatype</groupId>
  <artifactId>jackson-datatype-pcollections</artifactId>
  <version>2.7.0</version>
</dependency>

(or whatever version is most up-to-date at the moment)

Registering module

Like all standard Jackson modules (libraries that implement Module interface), registration is done as follows:

ObjectMapper mapper = new ObjectMapper()
    .registerModule(new PCollectionsModule());

after which functionality is available for all normal Jackson operations.

More

See Wiki for more information (javadocs, downloads).