Methods Summary |
---|
protected final void | flushBits()Flushes the bits. This method should be called in the write methods by
subclasses.
if (bitOffset == 0) {
return;
}
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public abstract void | write(int b)
|
public void | write(byte[] b)
write(b, 0, b.length);
|
public abstract void | write(byte[] b, int off, int len)
|
public void | writeBit(int bit)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeBits(long bits, int numBits)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeBoolean(boolean v)
write(v ? 1 : 0);
|
public void | writeByte(int v)
write(v);
|
public void | writeBytes(java.lang.String s)
write(s.getBytes());
|
public void | writeChar(int v)
writeShort(v);
|
public void | writeChars(java.lang.String s)
char[] chs = s.toCharArray();
writeChars(chs, 0, chs.length);
|
public void | writeChars(char[] c, int off, int len)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeDouble(double v)
writeLong(Double.doubleToLongBits(v));
|
public void | writeDoubles(double[] d, int off, int len)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeFloat(float v)
writeInt(Float.floatToIntBits(v));
|
public void | writeFloats(float[] f, int off, int len)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeInt(int v)
if (byteOrder == ByteOrder.BIG_ENDIAN) {
} else {
}
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeInts(int[] i, int off, int len)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeLong(long v)
if (byteOrder == ByteOrder.BIG_ENDIAN) {
} else {
}
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeLongs(long[] l, int off, int len)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeShort(int v)
if (byteOrder == ByteOrder.BIG_ENDIAN) {
} else {
}
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeShorts(short[] s, int off, int len)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|
public void | writeUTF(java.lang.String s)
// -- TODO implement
throw new UnsupportedOperationException("Not implemented yet");
|