API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.omg.CORBA_2_3.portable. InputStream View Source
Author(s)
OMG
Since
JDK1.2
Version
1.15 11/17/05
Serial
Hierarchy
 Object
      InputStream
          InputStream
              InputStream
Implements
Subclasses
Description
publicabstract abstract class InputStream
  InputStream provides for the reading of all of the mapped IDL types from the stream.
See also:    InputStream
Constructors
public InputStream ()
Methods
Hide/Show inherited methods
public int available () throws IOException [Inherited From InputStream]
  Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream.
public void close () throws IOException [Inherited From InputStream]
  Closes this input stream and releases any system resources associated with the stream.
publicsynchronized void mark (int readlimit) [Inherited From InputStream]
  Marks the current position in this input stream.
public boolean markSupported () [Inherited From InputStream]
  Tests if this input stream supports the mark and reset methods.
public ORB orb () [Inherited From InputStream]
  Returns the ORB that created this InputStream.
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.
publicabstract Any read_any () [Inherited From InputStream]
  Reads an Any from this input stream.
publicabstract void read_boolean_array (boolean[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of booleans from this input stream.
publicabstract boolean read_boolean () [Inherited From InputStream]
  Reads a boolean value from this input stream.
publicabstract void read_char_array (char[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of chars from this input stream.
publicabstract char read_char () [Inherited From InputStream]
  Reads a char value from this input stream.
public Context read_Context () [Inherited From InputStream]
  Reads a CORBA context from the stream.
publicabstract void read_double_array (double[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of doubles from this input stream.
publicabstract double read_double () [Inherited From InputStream]
  Reads a double value from this input stream.
public BigDecimal read_fixed () [Inherited From InputStream]
  Reads a BigDecimal number.
publicabstract void read_float_array (float[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of floats from this input stream.
publicabstract float read_float () [Inherited From InputStream]
  Reads a float value from this input stream.
publicabstract void read_long_array (int[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of CORBA longs (that is, Java ints) from this input stream.
publicabstract int read_long () [Inherited From InputStream]
  Reads a CORBA long (that is, Java int) value from this input stream.
publicabstract void read_longlong_array (long[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of CORBA longlongs (that is, Java longs) from this input stream.
publicabstract long read_longlong () [Inherited From InputStream]
  Reads a CORBA longlong (that is, Java long) value from this input stream.
publicabstract Object read_Object () [Inherited From InputStream]
  Reads a CORBA object from this input stream.
public Object read_Object (Class clz) [Inherited From InputStream]
  Unmarshals an object and returns a CORBA Object, which is an instance of the class passed as its argument.
publicabstract void read_octet_array (byte[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of octets (that is, bytes) from this input stream.
publicabstract byte read_octet () [Inherited From InputStream]
  Reads an octet (that is, a byte) value from this input stream.
@Deprecated
public Principal read_Principal () [Inherited From InputStream]
  Returns principal for invocation.
publicabstract void read_short_array (short[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of shorts from this input stream.
publicabstract short read_short () [Inherited From InputStream]
  Reads a short value from this input stream.
publicabstract String read_string () [Inherited From InputStream]
  Reads a string value from this input stream.
publicabstract TypeCode read_TypeCode () [Inherited From InputStream]
  Reads a TypeCode from this input stream.
publicabstract void read_ulong_array (int[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of unsigned CORBA longs (that is, Java ints) from this input stream.
publicabstract int read_ulong () [Inherited From InputStream]
  Reads an unsigned CORBA long (that is, Java int) value from this input stream.
publicabstract void read_ulonglong_array (long[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of unsigned CORBA longlongs (that is, Java longs) from this input stream.
publicabstract long read_ulonglong () [Inherited From InputStream]
  Reads a CORBA unsigned longlong (that is, Java long) value from this input stream.
publicabstract void read_ushort_array (short[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of unsigned shorts from this input stream.
publicabstract short read_ushort () [Inherited From InputStream]
  Reads a unsigned short value from this input stream.
public Serializable read_value ()
  Unmarshalls a value type from the input stream.
public Serializable read_value (BoxedValueHelper factory)
  Unmarshalls a value type from the input stream.
public Serializable read_value (Class clz)
  Unmarshalls a value type from the input stream.
public Serializable read_value (Serializable value)
  Unmarshalls a value type from the input stream.
public Serializable read_value (String rep_id)
  Unmarshalls a value type from the input stream.
publicabstract void read_wchar_array (char[] value, int offset, int length) [Inherited From InputStream]
  Reads an array of wide chars from this input stream.
publicabstract char read_wchar () [Inherited From InputStream]
  Reads a wide char value from this input stream.
publicabstract String read_wstring () [Inherited From InputStream]
  Reads a wide string value from this input stream.
public int read () throws IOException [Inherited From InputStream] [Specified in InputStream]
 
public int read (byte[] b) throws IOException [Inherited From InputStream]
  Reads some number of bytes from the input stream and stores them into the buffer array b.
public int read (byte[] b, int off, int len) throws IOException [Inherited From InputStream]
  Reads up to len bytes of data from the input stream into an array of bytes.
publicsynchronized void reset () throws IOException [Inherited From InputStream]
  Repositions this stream to the position at the time the mark method was last called on this input stream.
public long skip (long n) throws IOException [Inherited From InputStream]
  Skips over and discards n bytes of data from this input stream.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar