javax.jms

Interface BytesMessage

public interface BytesMessage extends Message

Version: $Rev: 467553 $ $Date: 2006-10-25 05:01:51 +0100 (Wed, 25 Oct 2006) $

Method Summary
longgetBodyLength()
booleanreadBoolean()
bytereadByte()
intreadBytes(byte[] value)
intreadBytes(byte[] value, int length)
charreadChar()
doublereadDouble()
floatreadFloat()
intreadInt()
longreadLong()
shortreadShort()
intreadUnsignedByte()
intreadUnsignedShort()
StringreadUTF()
voidreset()
voidwriteBoolean(boolean value)
voidwriteByte(byte value)
voidwriteBytes(byte[] value)
voidwriteBytes(byte[] value, int offset, int length)
voidwriteChar(char value)
voidwriteDouble(double value)
voidwriteFloat(float value)
voidwriteInt(int value)
voidwriteLong(long value)
voidwriteObject(Object value)
voidwriteShort(short value)
voidwriteUTF(String value)

Method Detail

getBodyLength

public long getBodyLength()

readBoolean

public boolean readBoolean()

readByte

public byte readByte()

readBytes

public int readBytes(byte[] value)

readBytes

public int readBytes(byte[] value, int length)

readChar

public char readChar()

readDouble

public double readDouble()

readFloat

public float readFloat()

readInt

public int readInt()

readLong

public long readLong()

readShort

public short readShort()

readUnsignedByte

public int readUnsignedByte()

readUnsignedShort

public int readUnsignedShort()

readUTF

public String readUTF()

reset

public void reset()

writeBoolean

public void writeBoolean(boolean value)

writeByte

public void writeByte(byte value)

writeBytes

public void writeBytes(byte[] value)

writeBytes

public void writeBytes(byte[] value, int offset, int length)

writeChar

public void writeChar(char value)

writeDouble

public void writeDouble(double value)

writeFloat

public void writeFloat(float value)

writeInt

public void writeInt(int value)

writeLong

public void writeLong(long value)

writeObject

public void writeObject(Object value)

writeShort

public void writeShort(short value)

writeUTF

public void writeUTF(String value)
Copyright © 2003-2010 The Apache Software Foundation. All Rights Reserved.