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

it.ssc.step.FactorySteps Maven / Gradle / Ivy

Go to download

This is a JSR331 interface for SSC (Software for the Calculation of the Simplex) is a java library for solving linear programming problems v. 3.0.1. SSC was designed and developed by Stefano Scarioli.

The newest version!
package it.ssc.step;

import it.ssc.ref.Input;


public interface FactorySteps {
	
	/*
	public DataSource createDataSource(Input input_reference) throws Exception; 
	
	public DataSource createDataSource(String name_input_dataset) throws Exception; 
	*/
	
	public DataStep createDataStep(String new_dataset, String name_input_dataset) throws Exception; 
	
	public DataStep createDataStep(String new_dataset, Input input_reference) throws Exception; 
	
	public FileStep createFileStep(String path_file, String lib_dot_idataset) throws Exception ;

	public FileStep createFileStep(String path_file,Input input_reference) throws Exception ;
	
	public CrossJoinStep createCrossJoinStep(String new_dataset)  throws Exception;
	
	public OuterJoinStep createOuterJoinStep(String new_dataset)  throws Exception;
	
	public DataStep createMemoryStep(String lib_dot_idataset) throws Exception ;
	
	public DataStep createMemoryStep(Input input_reference) throws Exception ;
	
	public SortStep createSortStep(String new_dataset, String name_input_dataset) throws Exception; 
	
	public SortStep createSortStep(String new_dataset, Input input_reference) throws Exception; 

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy