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

foundation.icon.ee.io.DataReader Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package foundation.icon.ee.io;

import java.math.BigInteger;

public interface DataReader {
    boolean readBoolean();
    byte readByte();
    short readShort();
    char readChar();
    int readInt();
    float readFloat();
    long readLong();
    double readDouble();
    BigInteger readBigInteger();
    String readString();
    byte[] readByteArray();
    boolean readNullity();
    void skip(int count);

    void readListHeader();
    void readMapHeader();
    boolean hasNext();
    void readFooter();
    long getTotalReadBytes();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy