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

webit.script.io.Out Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
// Copyright (c) 2013, 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