All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cognitect.transit.impl.AbstractWriteHandler Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.0.371
Show newest version
// Copyright (c) Cognitect, Inc.
// All rights reserved.

package com.cognitect.transit.impl;

import com.cognitect.transit.WriteHandler;

public abstract class AbstractWriteHandler implements WriteHandler {

    @Override
    public String stringRep(T o) {
        return null;
    }

    @Override
    public  WriteHandler getVerboseHandler() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy