164165166167168169170171172173174
{ return dis.readByte(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
181182183184185186187188189190191
{ return dis.readUnsignedByte(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
198199200201202203204205206207208
{ return dis.readShort(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
215216217218219220221222223224225
{ return dis.readUnsignedShort(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
232233234235236237238239240241242
{ return dis.readChar(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
249250251252253254255256257258259
{ return dis.readInt(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
266267268269270271272273274275276
{ return dis.readLong(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
283284285286287288289290291292293
{ return dis.readFloat(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
300301302303304305306307308309310
{ return dis.readDouble(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }
317318319320321322323324325326327
{ return dis.readUTF(); } catch (EOFException e) { throw new MessageEOFException(""); } catch (IOException e) { throw new MessagingJMSException("IOException", e); }