899091929394959697
} public float readFloat() throws JMSException { if (!bodyReadOnly) throw new MessageNotReadableException("The message body is writeonly"); return ((StreamMessage)message).readFloat(); }
979899100101102103104105
} public int readInt() throws JMSException { if (!bodyReadOnly) throw new MessageNotReadableException("The message body is writeonly"); return ((StreamMessage)message).readInt(); }
105106107108109110111112113
} public long readLong() throws JMSException { if (!bodyReadOnly) throw new MessageNotReadableException("The message body is writeonly"); return ((StreamMessage)message).readLong(); }
113114115116117118119120121
} public Object readObject() throws JMSException { if (!bodyReadOnly) throw new MessageNotReadableException("The message body is writeonly"); return ((StreamMessage)message).readObject(); }
121122123124125126127128129
} public short readShort() throws JMSException { if (!bodyReadOnly) throw new MessageNotReadableException("The message body is writeonly"); return ((StreamMessage)message).readShort(); }
129130131132133134135136137
} public String readString() throws JMSException { if (!bodyReadOnly) throw new MessageNotReadableException("The message body is writeonly"); return ((StreamMessage)message).readString(); }
505152535455565758
public long getBodyLength() throws JMSException { if (!bodyReadOnly) { throw new MessageNotReadableException("The message body is writeonly"); } return ((BytesMessage)message).getBodyLength(); }
596061626364656667
public boolean readBoolean() throws JMSException { if (!bodyReadOnly) { throw new MessageNotReadableException("The message body is writeonly"); } return ((BytesMessage)message).readBoolean(); }
686970717273747576
public byte readByte() throws JMSException { if (!bodyReadOnly) { throw new MessageNotReadableException("The message body is writeonly"); } return ((BytesMessage)message).readByte(); }
777879808182838485
public int readUnsignedByte() throws JMSException { if (!bodyReadOnly) { throw new MessageNotReadableException("The message body is writeonly"); } return ((BytesMessage)message).readUnsignedByte(); }