Package com.google.gwt.user.client.rpc
Interface SerializationStreamReader
-
public interface SerializationStreamReaderAn interface for reading values from a stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanreadBoolean()bytereadByte()charreadChar()doublereadDouble()floatreadFloat()intreadInt()longreadLong()java.lang.ObjectreadObject()shortreadShort()java.lang.StringreadString()
-
-
-
Method Detail
-
readBoolean
boolean readBoolean() throws SerializationException- Throws:
SerializationException
-
readByte
byte readByte() throws SerializationException- Throws:
SerializationException
-
readChar
char readChar() throws SerializationException- Throws:
SerializationException
-
readDouble
double readDouble() throws SerializationException- Throws:
SerializationException
-
readFloat
float readFloat() throws SerializationException- Throws:
SerializationException
-
readInt
int readInt() throws SerializationException- Throws:
SerializationException
-
readLong
long readLong() throws SerializationException- Throws:
SerializationException
-
readObject
java.lang.Object readObject() throws SerializationException- Throws:
SerializationException
-
readShort
short readShort() throws SerializationException- Throws:
SerializationException
-
readString
java.lang.String readString() throws SerializationException- Throws:
SerializationException
-
-