API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.omg.CORBA.portable. OutputStream View Source
Author(s)
Since
JDK1.2
Version
1.13, 04/22/98
Serial
Hierarchy
 Object
      OutputStream
          OutputStream
Implements
Subclasses
Description
publicabstract abstract class OutputStream
  OuputStream is the Java API for writing IDL types to CDR marshal streams.
See also:   
Constructors
public OutputStream ()
Methods
Hide/Show inherited methods
public void close () throws IOException [Inherited From OutputStream]
  Closes this output stream and releases any system resources associated with this stream.
publicabstract InputStream create_input_stream ()
  Returns an input stream with the same buffer.
public void flush () throws IOException [Inherited From OutputStream]
  Flushes this output stream and forces any buffered output bytes to be written out.
public ORB orb ()
  Returns the ORB that created this OutputStream.
publicabstract void write_any (Any value)
  Writes an Any on this output stream.
publicabstract void write_boolean_array (boolean[] value, int offset, int length)
  Writes an array of booleans on this output stream.
publicabstract void write_boolean (boolean value)
  Writes a boolean value to this stream.
publicabstract void write_char_array (char[] value, int offset, int length)
  Writes an array of chars on this output stream.
publicabstract void write_char (char value)
  Writes a char value to this stream.
public void write_Context (Context ctx, ContextList contexts)
  Writes a CORBA context on this stream.
publicabstract void write_double_array (double[] value, int offset, int length)
  Writes an array of doubles on this output stream.
publicabstract void write_double (double value)
  Writes a double value to this stream.
public void write_fixed (BigDecimal value)
  Writes a BigDecimal number.
publicabstract void write_float_array (float[] value, int offset, int length)
  Writes an array of floats on this output stream.
publicabstract void write_float (float value)
  Writes a float value to this stream.
publicabstract void write_long_array (int[] value, int offset, int length)
  Writes an array of CORBA longs (i.e.
publicabstract void write_long (int value)
  Writes a CORBA long (i.e.
publicabstract void write_longlong_array (long[] value, int offset, int length)
  Writes an array of CORBA longlongs (i.e.
publicabstract void write_longlong (long value)
  Writes a CORBA longlong (i.e.
publicabstract void write_Object (Object value)
  Writes a CORBA Object on this output stream.
publicabstract void write_octet_array (byte[] value, int offset, int length)
  Writes an array of CORBA octets (bytes) on this output stream.
publicabstract void write_octet (byte value)
  Writes a CORBA octet (i.e.
@Deprecated
public void write_Principal (Principal value)
  Writes a Principle on this output stream.
publicabstract void write_short_array (short[] value, int offset, int length)
  Writes an array of shorts on this output stream.
publicabstract void write_short (short value)
  Writes a short value to this stream.
publicabstract void write_string (String value)
  Writes a string value to this stream.
publicabstract void write_TypeCode (TypeCode value)
  Writes a TypeCode on this output stream.
publicabstract void write_ulong_array (int[] value, int offset, int length)
  Writes an array of unsigned CORBA longs (i.e.
publicabstract void write_ulong (int value)
  Writes an unsigned CORBA long (i.e.
publicabstract void write_ulonglong_array (long[] value, int offset, int length)
  Writes an array of unsigned CORBA longlongs (i.e.
publicabstract void write_ulonglong (long value)
  Writes an unsigned CORBA longlong (i.e.
publicabstract void write_ushort_array (short[] value, int offset, int length)
  Writes an array of unsigned shorts on this output stream.
publicabstract void write_ushort (short value)
  Writes an unsigned short value to this stream.
publicabstract void write_wchar_array (char[] value, int offset, int length)
  Writes an array of wide chars on this output stream.
publicabstract void write_wchar (char value)
  Writes a wide char value to this stream.
publicabstract void write_wstring (String value)
  Writes a wide string value to this stream.
public void write (byte[] b) throws IOException [Inherited From OutputStream]
  Writes b.length bytes from the specified byte array to this output stream.
public void write (byte[] b, int off, int len) throws IOException [Inherited From OutputStream]
  Writes len bytes from the specified byte array starting at offset off to this output stream.
public void write (int b) throws IOException [Specified in OutputStream]
  Writes an integer (length of arrays) onto this stream.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar