io.inverno.mod.configuration.internal.parser.properties.Provider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inverno-configuration Show documentation
Show all versions of inverno-configuration Show documentation
Inverno configuration module
/* Generated By:JavaCC: Do not edit this line. Provider.java Version 7.0 */
/* JavaCCOptions:KEEP_LINE_COLUMN=true */
package io.inverno.mod.configuration.internal.parser.properties;
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=815130e84386e8b3e33e0a5bdc963a81 (do not edit this line) */