Interface InputShim
-
- All Known Implementing Classes:
ShadedInputAdapter
public interface InputShim
A minimalInput
-like abstraction. See that class for method documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
readBoolean()
byte
readByte()
byte[]
readBytes(int size)
double
readDouble()
int
readInt()
long
readLong()
short
readShort()
String
readString()
-
-
-
Method Detail
-
readByte
byte readByte()
-
readBytes
byte[] readBytes(int size)
-
readString
String readString()
-
readShort
short readShort()
-
readLong
long readLong()
-
readInt
int readInt()
-
readBoolean
boolean readBoolean()
-
readDouble
double readDouble()
-
-