javax.jms

Interface StreamMessage

public interface StreamMessage extends Message

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

Method Summary
booleanreadBoolean()
bytereadByte()
intreadBytes(byte[] value)
charreadChar()
doublereadDouble()
floatreadFloat()
intreadInt()
longreadLong()
ObjectreadObject()
shortreadShort()
StringreadString()
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)
voidwriteString(String value)

Method Detail

readBoolean

public boolean readBoolean()

readByte

public byte readByte()

readBytes

public int readBytes(byte[] value)

readChar

public char readChar()

readDouble

public double readDouble()

readFloat

public float readFloat()

readInt

public int readInt()

readLong

public long readLong()

readObject

public Object readObject()

readShort

public short readShort()

readString

public String readString()

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)

writeString

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