511512513514515516517518519
{ return create_input_stream().read_float(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
544545546547548549550551552
{ return create_input_stream().read_double(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
583584585586587588589590591
{ return create_input_stream().read_boolean(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
616617618619620621622623624
{ return create_input_stream().read_char(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
285286287288289290291292293294295
ClientInterceptorIterator.RECEIVE_REPLY); } catch(RemarshalException e) { //not allowed to happen here anyway throw new INTERNAL("should not happen"); } info = null; } } }
643644645646647648649650651
{ return create_input_stream().read_wchar(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
676677678679680681682683684
{ return create_input_stream().read_octet(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
709710711712713714715716717
{ return create_input_stream().read_any(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
742743744745746747748749750
{ return create_input_stream().read_TypeCode(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }
775776777778779780781782783
{ return create_input_stream().read_string(); } else { throw new INTERNAL("Encountered unexpected type of value: " + value.getClass()); } }