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

org.math.R.RLog Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.math.R;

public interface RLog {

    public enum Level {
        OUTPUT,
        INFO,
        WARNING,
        ERROR;
    }

    /**Support R messages printin
     * @param message to log
     * @param l Level*/
    public void log(String message, Level l);

    public void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy