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

js.util.iterable.ByteIteratorResult Maven / Gradle / Ivy

package js.util.iterable;

import js.lang.Any;
import org.teavm.jso.JSProperty;


public interface ByteIteratorResult extends Any {
    @JSProperty
    boolean getDone();

    @JSProperty
    void setDone(boolean done);

    @JSProperty
    byte getValue();

    @JSProperty
    void setValue(byte value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy