Method Summary |
|
public void | appendByte(int b) Append byte to this buffer. |
public void | appendBytes(byte[] bs, int start, int len) Append `len' bytes from byte array,
starting at given `start' offset. |
public void | appendBytes(byte[] bs) Append all bytes from given byte array. |
public void | appendChar(int x) Append a character as a two byte number. |
public void | appendDouble(double x) Append a double as a eight byte number. |
public void | appendFloat(float x) Append a float as a four byte number. |
public void | appendInt(int x) Append an integer as a four byte number. |
public void | appendLong(long x) Append a long as an eight byte number. |
public void | appendName(Name name) Append a name. |
public void | reset() Reset to zero length. |
public Name | toName(Name.Table names) Convert contents to name. |