org.jpmml.lightgbm.Provider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpmml-lightgbm Show documentation
Show all versions of jpmml-lightgbm Show documentation
Java library and command-line application for converting LightGBM models to PMML
/* Generated By:JavaCC: Do not edit this line. Provider.java Version 7.0 */
/* JavaCCOptions:KEEP_LINE_COLUMN=true */
package org.jpmml.lightgbm;
import java.io.IOException;
public interface Provider {
/**
* Reads characters into an array
* @param buffer Destination buffer
* @param offset Offset at which to start storing characters
* @param length The maximum possible number of characters to read
* @return The number of characters read, or -1 if all read
* @exception IOException
*/
public int read(char buffer[], int offset, int len) throws IOException;
/**
* Closes the stream and releases any system resources associated with
* it.
* @exception IOException
*/
public void close() throws IOException;
}
/* JavaCC - OriginalChecksum=bc6e051ecabddec8c2a16b27d2152af5 (do not edit this line) */