Interface OutputShim
- 
- All Known Implementing Classes:
 ShadedOutputAdapter
public interface OutputShimA minimalOutput-like abstraction. See that class for method documentation. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()voidwriteBoolean(boolean b)voidwriteByte(byte b)voidwriteBytes(byte[] array, int offset, int count)voidwriteDouble(double d)voidwriteInt(int i)voidwriteLong(long l)voidwriteShort(int s)voidwriteString(String s) 
 - 
 
- 
- 
Method Detail
- 
writeByte
void writeByte(byte b)
 
- 
writeBytes
void writeBytes(byte[] array, int offset, int count) 
- 
writeString
void writeString(String s)
 
- 
writeLong
void writeLong(long l)
 
- 
writeInt
void writeInt(int i)
 
- 
writeDouble
void writeDouble(double d)
 
- 
writeShort
void writeShort(int s)
 
- 
writeBoolean
void writeBoolean(boolean b)
 
- 
flush
void flush()
 
 - 
 
 -