107108109110111112113114
*/ public void writeChar(char value) { try { stream.writeChar(value); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
118119120121122123124125
*/ public void writeBoolean(boolean value) { try { stream.writeBoolean(value); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
129130131132133134135136
*/ public void writeObject(Object value) { try { stream.writeObject(value); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
4546474849505152
*/ public byte readByte() { try { return stream.readByte(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
5657585960616263
*/ public short readShort() { try { return stream.readShort(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
6768697071727374
*/ public int readInt() { try { return stream.readInt(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
7879808182838485
*/ public long readLong() { try { return stream.readLong(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
8990919293949596
*/ public float readFloat() { try { return stream.readFloat(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
100101102103104105106107
*/ public double readDouble() { try { return stream.readDouble(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }
111112113114115116117118
*/ public boolean readBoolean() { try { return stream.readBoolean(); } catch (Exception e) { throw new StephenerializationException(BASIC_MSG, e); } }