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

com.fasterxml.sort.DataWriter Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.fasterxml.sort;

import java.io.IOException;

public abstract class DataWriter
{
    public abstract void writeEntry(T item) throws IOException;

    public abstract void close() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy