965966967968969970971972
moveNext(); try { return ((IntegerContainer) currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be int", e); } }
978979980981982983984985
moveNext(); try { return ((LongContainer) currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be long", e); } }
991992993994995996997998
moveNext(); try { return ((FloatContainer) currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be float", e); } }
10041005100610071008100910101011
moveNext(); try { return ((DoubleContainer) currentObject).getValue(); } catch (ClassCastException e) { throw new SerializationException("Excepted to be double", e); } }
10241025102610271028102910301031
moveNext(); try { return (String) currentObject; } catch (ClassCastException e) { throw new SerializationException("Excepted to be String", e); } }