441442443444445446447448
{ this.writeByte(DataContainerConstants.BOOLEAN); DataContainer.this.content.add(obj); } else { throw new SerializationException("I don't know how to write type " + obj.getClass().getName() + " yet"); } }
172173174175176177178179
return readObjectArray(metaData,referenceId,cache, length, input); } } catch (ClassNotFoundException ex) { throw new SerializationException(ex); } }
114115116117118119120121122
} public void write(byte[] buf, int off, int len) throws IOException { if (buf == null) { throw new SerializationException("buf can't be null"); } bout.write(buf, off, len); }
961962963964965966967968
try { return ((BooleanContainer)currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be boolean",e); } }
99799899910001001100210031004
try { return ((ShortContainer)currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be short",e); } }
10131014101510161017101810191020
10291030103110321033103410351036
try { return ((CharacterContainer)currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be char",e); } }
10451046104710481049105010511052
try { return ((IntegerContainer)currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be int",e); } }
10611062106310641065106610671068
try { return ((LongContainer)currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be long",e); } }
10771078107910801081108210831084
try { return ((FloatContainer)currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be float",e); } }