it.ssc.formats.FormatsStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-ssc Show documentation
Show all versions of jsr331-ssc Show documentation
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.formats;
public interface FormatsStep {
public enum TYPE_FORMAT {CODE_ALPHABETIC, CODE_NUMERIC, CODE_NUMERIC_RANGE};
public void setSpecific(TYPE_FORMAT code,String field_name_format,String filed_name_value,
String filed_name_condition,String filed_name_value2,String filed_name_label);
public void setNamesFormatsToLoading(String... format_names_to_be_loaded);
public void execute() throws Exception;
}