io.setl.json.jackson.CJBaseSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of canonical-json Show documentation
Show all versions of canonical-json Show documentation
An implementation of the Canonical JSON format with support for javax.json and Jackson
The newest version!
package io.setl.json.jackson;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.jsonFormatVisitors.JsonFormatVisitorWrapper;
import com.fasterxml.jackson.databind.type.TypeFactory;
import io.setl.json.primitive.CJBase;
/**
* A writer of JSON values.
*
* @author Simon Greatrix on 06/01/2020.
*/
public class CJBaseSerializer extends CanonicalSerializer {
static final CJBaseSerializer INSTANCE = new CJBaseSerializer();
static final JavaType TYPE = TypeFactory.defaultInstance().constructType(CJBase.class);
/** New instance. */
public CJBaseSerializer() {
// nothing to do
}
@Override
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType type) throws JsonMappingException {
// Cannot narrow the format down as a json value could be anything.
visitor.expectAnyFormat(type);
}
@Override
public Class handledType() {
return CJBase.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy