Methods Summary |
---|
public abstract InputStream | create_input_stream()Returns an input stream with the same buffer.
|
public org.omg.CORBA.ORB | orb()Returns the ORB that created this OutputStream.
throw new org.omg.CORBA.NO_IMPLEMENT();
|
public void | write(int b)Writes an integer (length of arrays) onto this stream.
throw new org.omg.CORBA.NO_IMPLEMENT();
|
public void | write_Context(org.omg.CORBA.Context ctx, org.omg.CORBA.ContextList contexts)Writes a CORBA context on this stream. The
Context is marshaled as a sequence of strings.
Only those Context values specified in the contexts
parameter are actually written.
throw new org.omg.CORBA.NO_IMPLEMENT();
|
public abstract void | write_Object(org.omg.CORBA.Object value)Writes a CORBA Object on this output stream.
|
public void | write_Principal(org.omg.CORBA.Principal value)Writes a Principle on this output stream.
throw new org.omg.CORBA.NO_IMPLEMENT();
|
public abstract void | write_TypeCode(org.omg.CORBA.TypeCode value)Writes a TypeCode on this output stream.
|
public abstract void | write_any(org.omg.CORBA.Any value)Writes an Any on this output stream.
|
public abstract void | write_boolean(boolean value)Writes a boolean value to this stream.
|
public abstract void | write_boolean_array(boolean[] value, int offset, int length)Writes an array of booleans on this output stream.
|
public abstract void | write_char(char value)Writes a char value to this stream.
|
public abstract void | write_char_array(char[] value, int offset, int length)Writes an array of chars on this output stream.
|
public abstract void | write_double(double value)Writes a double value to this stream.
|
public abstract void | write_double_array(double[] value, int offset, int length)Writes an array of doubles on this output stream.
|
public void | write_fixed(java.math.BigDecimal value)Writes a BigDecimal number.
throw new org.omg.CORBA.NO_IMPLEMENT();
|
public abstract void | write_float(float value)Writes a float value to this stream.
|
public abstract void | write_float_array(float[] value, int offset, int length)Writes an array of floats on this output stream.
|
public abstract void | write_long(int value)Writes a CORBA long (i.e. Java int) value to this stream.
|
public abstract void | write_long_array(int[] value, int offset, int length)Writes an array of CORBA longs (i.e. Java ints) on this output stream.
|
public abstract void | write_longlong(long value)Writes a CORBA longlong (i.e. Java long) value to this stream.
|
public abstract void | write_longlong_array(long[] value, int offset, int length)Writes an array of CORBA longlongs (i.e. Java longs) on this output stream.
|
public abstract void | write_octet(byte value)Writes a CORBA octet (i.e. byte) value to this stream.
|
public abstract void | write_octet_array(byte[] value, int offset, int length)Writes an array of CORBA octets (bytes) on this output stream.
|
public abstract void | write_short(short value)Writes a short value to this stream.
|
public abstract void | write_short_array(short[] value, int offset, int length)Writes an array of shorts on this output stream.
|
public abstract void | write_string(java.lang.String value)Writes a string value to this stream.
|
public abstract void | write_ulong(int value)Writes an unsigned CORBA long (i.e. Java int) value to this stream.
|
public abstract void | write_ulong_array(int[] value, int offset, int length)Writes an array of unsigned CORBA longs (i.e. Java ints) on this output stream.
|
public abstract void | write_ulonglong(long value)Writes an unsigned CORBA longlong (i.e. Java long) value to this stream.
|
public abstract void | write_ulonglong_array(long[] value, int offset, int length)Writes an array of unsigned CORBA longlongs (i.e. Java ints) on this output stream.
|
public abstract void | write_ushort(short value)Writes an unsigned short value to this stream.
|
public abstract void | write_ushort_array(short[] value, int offset, int length)Writes an array of unsigned shorts on this output stream.
|
public abstract void | write_wchar(char value)Writes a wide char value to this stream.
|
public abstract void | write_wchar_array(char[] value, int offset, int length)Writes an array of wide chars on this output stream.
|
public abstract void | write_wstring(java.lang.String value)Writes a wide string value to this stream.
|