![JAR search and dependency download from the Maven repository](/logo.png)
webit.script.io.Out Maven / Gradle / Ivy
The newest version!
// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.io;
/**
*
* @author Zqq
*/
public interface Out {
void write(byte[] bytes, int offset, int length);
void write(byte[] bytes);
void write(char[] chars, int offset, int length);
void write(char[] chars);
void write(String string, int offset, int length);
void write(String string);
String getEncoding();
boolean isByteStream();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy