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

org.jpmml.rexp.Provider Maven / Gradle / Ivy

The newest version!
/* Generated By:JavaCC: Do not edit this line. Provider.java Version 7.0 */
/* JavaCCOptions:KEEP_LINE_COLUMN=true */
package org.jpmml.rexp;


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 len     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=4bcd2896a569d7fb4efdf0d13963bf45 (do not edit this line) */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy