readDouble

 

public double readDouble() throws IOException, EOFException;

Reads a double from the current position in the message buffer.

Returns

  • a big-endian double if encoding is equal to MQC.MQENC_INTEGER_NORMAL, or a little-endian double if it is equal to MQC.MQENC_INTEGER_REVERSED .

Exceptions

  • IOException - if encoding is not equal to either of these values.

  • EOFException - if the read goes beyond the end of file.


uj13790_