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

com.meliorbis.numerics.io.csv.CSVWriterFactory Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
package com.meliorbis.numerics.io.csv;

import java.io.File;

import com.meliorbis.numerics.io.NumericsWriterFactory;

/**
 * @author Tobias Grasl
 */
public class CSVWriterFactory implements NumericsWriterFactory
{
   @Override
    public CSVWriter create(File file_)
    {
        return new CSVWriter(file_);
    }
   
   @Override
	public String defaultExtension()
	{
		return ".csv";
	}   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy