javax.jms
public interface BytesMessage extends Message
Version: $Rev: 467553 $ $Date: 2006-10-25 05:01:51 +0100 (Wed, 25 Oct 2006) $
| Method Summary | |
|---|---|
| long | getBodyLength() |
| boolean | readBoolean() |
| byte | readByte() |
| int | readBytes(byte[] value) |
| int | readBytes(byte[] value, int length) |
| char | readChar() |
| double | readDouble() |
| float | readFloat() |
| int | readInt() |
| long | readLong() |
| short | readShort() |
| int | readUnsignedByte() |
| int | readUnsignedShort() |
| String | readUTF() |
| void | reset() |
| void | writeBoolean(boolean value) |
| void | writeByte(byte value) |
| void | writeBytes(byte[] value) |
| void | writeBytes(byte[] value, int offset, int length) |
| void | writeChar(char value) |
| void | writeDouble(double value) |
| void | writeFloat(float value) |
| void | writeInt(int value) |
| void | writeLong(long value) |
| void | writeObject(Object value) |
| void | writeShort(short value) |
| void | writeUTF(String value) |