114115116117118119120121122123
public byte readByte() throws OpenwireException { initializeReading(); try { return this.dataIn.readByte(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
125126127128129130131132133134
public int readUnsignedByte() throws OpenwireException { initializeReading(); try { return this.dataIn.readUnsignedByte(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
136137138139140141142143144145
public short readShort() throws OpenwireException { initializeReading(); try { return this.dataIn.readShort(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
147148149150151152153154155156
public int readUnsignedShort() throws OpenwireException { initializeReading(); try { return this.dataIn.readUnsignedShort(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
158159160161162163164165166167
public char readChar() throws OpenwireException { initializeReading(); try { return this.dataIn.readChar(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
169170171172173174175176177178
public int readInt() throws OpenwireException { initializeReading(); try { return this.dataIn.readInt(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
180181182183184185186187188189
public long readLong() throws OpenwireException { initializeReading(); try { return this.dataIn.readLong(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
191192193194195196197198199200
public float readFloat() throws OpenwireException { initializeReading(); try { return this.dataIn.readFloat(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
202203204205206207208209210211
public double readDouble() throws OpenwireException { initializeReading(); try { return this.dataIn.readDouble(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }
213214215216217218219220221222
public String readUTF() throws OpenwireException { initializeReading(); try { return this.dataIn.readUTF(); } catch (EOFException e) { throw new OpenwireException(e); } catch (IOException e) { throw new OpenwireException(e); } }