com.meliorbis.numerics.io.csv.CSVReaderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
package com.meliorbis.numerics.io.csv;
import java.io.File;
import com.meliorbis.numerics.io.NumericsReaderFactory;
/**
* @author Tobias Grasl
*/
public class CSVReaderFactory implements NumericsReaderFactory
{
@Override
public CSVReader create(File file_)
{
return new CSVReader(file_);
}
@Override
public String defaultExtension()
{
return ".csv";
}
}