public abstract class InputStream extends InputStream
InputStream provides for the reading of all of the mapped IDL types from the stream. It extends org.omg.CORBA.portable.InputStream. This class defines new methods that were added for CORBA 2.3.
InputStream
public InputStream()
Create a new instance of this class. throw SecurityException if SecurityManager is installed and enableSubclassImplementation SerializablePermission is not granted or jdk.corba.allowInputStreamSubclass system property is either not set or is set to 'false'
public Serializable read_value()
Unmarshalls a value type from the input stream.
public Serializable read_value(Class clz)
Unmarshalls a value type from the input stream.
clz
- is the declared type of the value to be unmarshalledpublic Serializable read_value(BoxedValueHelper factory)
Unmarshalls a value type from the input stream.
factory
- is the instance fo the helper to be used for unmarshalling the value typepublic Serializable read_value(String rep_id)
Unmarshalls a value type from the input stream.
rep_id
- identifies the type of the value to be unmarshalledpublic Serializable read_value(Serializable value)
Unmarshalls a value type from the input stream.
value
- is an uninitialized value which is added to the orb's indirection table before calling Streamable._read() or CustomMarshal.unmarshal() to unmarshal the value.public Object read_abstract_interface()
Unmarshal the value object or a suitable stub object.
public Object read_abstract_interface(Class clz)
Unmarshal the class object or the stub class corresponding to the passed type.
clz
- is the Class object for the stub class which corresponds to the type that is statically expected.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.