com.adgear.anoa.read.SmileStreams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anoa-tools Show documentation
Show all versions of anoa-tools Show documentation
Additional functionality complementing the anoa-core module, requiring additional upstream
dependencies such as jackson-databind and various jackson dataformats.
package com.adgear.anoa.read;
import com.fasterxml.jackson.core.FormatSchema;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.smile.SmileFactory;
import com.fasterxml.jackson.dataformat.smile.SmileParser;
/**
* Utility class for streaming Jackson records from SMILE serializations.
*/
public class SmileStreams extends JacksonStreamsBase<
ObjectMapper,
SmileFactory,
FormatSchema,
SmileParser> {
public SmileStreams() {
super(new ObjectMapper(new SmileFactory()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy