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

com.google.gwt.user.client.rpc.SerializationStreamReader Maven / Gradle / Ivy

There is a newer version: 1.0-alpha-8
Show newest version
package com.google.gwt.user.client.rpc;

@Deprecated
public interface SerializationStreamReader {

    boolean readBoolean() throws SerializationException;

    byte readByte() throws SerializationException;

    char readChar() throws SerializationException;

    double readDouble() throws SerializationException;

    float readFloat() throws SerializationException;

    int readInt() throws SerializationException;

    long readLong() throws SerializationException;

    Object readObject() throws SerializationException;

    short readShort() throws SerializationException;

    String readString() throws SerializationException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy