com.cognitect.transit.impl.JsonVerboseEmitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transit-java Show documentation
Show all versions of transit-java Show documentation
Transit is a data format and a set of libraries for conveying values between applications written in different languages. This library provides support for marshalling Transit data to/from Java.
// Copyright (c) Cognitect, Inc.
// All rights reserved.
package com.cognitect.transit.impl;
import com.cognitect.transit.WriteHandler;
import com.fasterxml.jackson.core.JsonGenerator;
import java.util.Map;
import java.util.function.Function;
public class JsonVerboseEmitter extends JsonEmitter {
@Deprecated
public JsonVerboseEmitter(JsonGenerator gen, WriteHandlerMap writeHandlerMap) {
super(gen, writeHandlerMap, null);
}
public JsonVerboseEmitter(JsonGenerator gen, WriteHandlerMap writeHandlerMap, WriteHandler defaultWriteHandler) {
super(gen, writeHandlerMap, defaultWriteHandler);
}
public JsonVerboseEmitter(JsonGenerator gen, WriteHandlerMap writeHandlerMap, WriteHandler defaultWriteHandler, Function