com.fasterxml.sort.DataReaderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-merge-sort Show documentation
Show all versions of java-merge-sort Show documentation
Basic configurable disk-backed N-way merge sort
package com.fasterxml.sort;
import java.io.*;
public abstract class DataReaderFactory
{
public abstract DataReader constructReader(InputStream in) throws IOException;
}