com.fasterxml.sort.DataWriter Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy