no.ssb.jsonstat.JsonStatDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stat-java Show documentation
Show all versions of json-stat-java Show documentation
Json stat implementation in Java
The newest version!
package no.ssb.jsonstat;
import com.fasterxml.jackson.databind.module.SimpleDeserializers;
import no.ssb.jsonstat.v2.DatasetBuildable;
import no.ssb.jsonstat.v2.Dimension;
import no.ssb.jsonstat.v2.deser.DatasetDeserializer;
import no.ssb.jsonstat.v2.deser.DimensionDeserializer;
/**
* Main deserializer-
*/
public class JsonStatDeserializer extends SimpleDeserializers {
public JsonStatDeserializer() {
addDeserializer(DatasetBuildable.class, new DatasetDeserializer());
addDeserializer(Dimension.Builder.class, new DimensionDeserializer());
}
}