- 
- All Superinterfaces:
- IDLEntity,- Serializable,- ValueBase
 
 
 public interface DataOutputStream extends ValueBase Defines the methods used to write primitive data types to output streams for marshalling custom value types. This interface is used by user written custom marshalling code for custom value types.- See Also:
- DataInputStream,- CustomMarshal
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite_Abstract(Object value)Writes the IDL Abstract interface type to the output stream.voidwrite_any(Any value)Writes the Any value to the output stream.voidwrite_any_array(Any[] seq, int offset, int length)Writes the array of IDL Anys from offset for length elements to the output stream.voidwrite_boolean(boolean value)Writes the boolean value to the output stream.voidwrite_boolean_array(boolean[] seq, int offset, int length)Writes the array of IDL booleans from offset for length elements to the output stream.voidwrite_char(char value)Writes the IDL character value to the output stream.voidwrite_char_array(char[] seq, int offset, int length)Writes the array of IDL characters from offset for length elements to the output stream.voidwrite_double(double value)Writes the IDL double value to the output stream.voidwrite_double_array(double[] seq, int offset, int length)Writes the array of IDL doubles from offset for length elements to the output stream.voidwrite_float(float value)Writes the IDL float value to the output stream.voidwrite_float_array(float[] seq, int offset, int length)Writes the array of IDL floats from offset for length elements to the output stream.voidwrite_long(int value)Writes the IDL long value (represented as a Java int) to the output stream.voidwrite_long_array(int[] seq, int offset, int length)Writes the array of IDL longs from offset for length elements to the output stream.voidwrite_longlong(long value)Writes the IDL long long value (represented as a Java long) to the output stream.voidwrite_longlong_array(long[] seq, int offset, int length)Writes the array of IDL long longs from offset for length elements to the output stream.voidwrite_Object(Object value)Writes the IDL CORBA::Object value to the output stream.voidwrite_octet(byte value)Writes the IDL octet value (represented as a Java byte) to the output stream.voidwrite_octet_array(byte[] seq, int offset, int length)Writes the array of IDL octets from offset for length elements to the output stream.voidwrite_short(short value)Writes the IDL short value to the output stream.voidwrite_short_array(short[] seq, int offset, int length)Writes the array of IDL shorts from offset for length elements to the output stream.voidwrite_string(String value)Writes the IDL string value to the output stream.voidwrite_TypeCode(TypeCode value)Writes the typecode to the output stream.voidwrite_ulong(int value)Writes the IDL unsigned long value (represented as a Java int) to the output stream.voidwrite_ulong_array(int[] seq, int offset, int length)Writes the array of IDL unsigned longs (represented as Java ints) from offset for length elements to the output stream.voidwrite_ulonglong(long value)Writes the IDL unsigned long long value (represented as a Java long) to the output stream.voidwrite_ulonglong_array(long[] seq, int offset, int length)Writes the array of IDL unsigned long longs (represented as Java longs) from offset for length elements to the output stream.voidwrite_ushort(short value)Writes the IDL unsigned short value (represented as a Java short value) to the output stream.voidwrite_ushort_array(short[] seq, int offset, int length)Writes the array of IDL unsigned shorts (represented as Java shorts) from offset for length elements to the output stream.voidwrite_Value(Serializable value)Writes the IDL value type value to the output stream.voidwrite_wchar(char value)Writes the IDL wide character value to the output stream.voidwrite_wchar_array(char[] seq, int offset, int length)Writes the array of IDL wide characters from offset for length elements to the output stream.voidwrite_wstring(String value)Writes the IDL wide string value (represented as a Java String) to the output stream.- 
Methods inherited from interface org.omg.CORBA.portable.ValueBase_truncatable_ids
 
- 
 
- 
- 
- 
Method Detail- 
write_anyvoid write_any(Any value) Writes the Any value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_booleanvoid write_boolean(boolean value) Writes the boolean value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_charvoid write_char(char value) Writes the IDL character value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_wcharvoid write_wchar(char value) Writes the IDL wide character value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_octetvoid write_octet(byte value) Writes the IDL octet value (represented as a Java byte) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_shortvoid write_short(short value) Writes the IDL short value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_ushortvoid write_ushort(short value) Writes the IDL unsigned short value (represented as a Java short value) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_longvoid write_long(int value) Writes the IDL long value (represented as a Java int) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_ulongvoid write_ulong(int value) Writes the IDL unsigned long value (represented as a Java int) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_longlongvoid write_longlong(long value) Writes the IDL long long value (represented as a Java long) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_ulonglongvoid write_ulonglong(long value) Writes the IDL unsigned long long value (represented as a Java long) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_floatvoid write_float(float value) Writes the IDL float value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_doublevoid write_double(double value) Writes the IDL double value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_stringvoid write_string(String value) Writes the IDL string value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_wstringvoid write_wstring(String value) Writes the IDL wide string value (represented as a Java String) to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_Objectvoid write_Object(Object value) Writes the IDL CORBA::Object value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_Abstractvoid write_Abstract(Object value) Writes the IDL Abstract interface type to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_Valuevoid write_Value(Serializable value) Writes the IDL value type value to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_TypeCodevoid write_TypeCode(TypeCode value) Writes the typecode to the output stream.- Parameters:
- value- The value to be written.
 
 - 
write_any_arrayvoid write_any_array(Any[] seq, int offset, int length) Writes the array of IDL Anys from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_boolean_arrayvoid write_boolean_array(boolean[] seq, int offset, int length)Writes the array of IDL booleans from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_char_arrayvoid write_char_array(char[] seq, int offset, int length)Writes the array of IDL characters from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_wchar_arrayvoid write_wchar_array(char[] seq, int offset, int length)Writes the array of IDL wide characters from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_octet_arrayvoid write_octet_array(byte[] seq, int offset, int length)Writes the array of IDL octets from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_short_arrayvoid write_short_array(short[] seq, int offset, int length)Writes the array of IDL shorts from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_ushort_arrayvoid write_ushort_array(short[] seq, int offset, int length)Writes the array of IDL unsigned shorts (represented as Java shorts) from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_long_arrayvoid write_long_array(int[] seq, int offset, int length)Writes the array of IDL longs from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_ulong_arrayvoid write_ulong_array(int[] seq, int offset, int length)Writes the array of IDL unsigned longs (represented as Java ints) from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_ulonglong_arrayvoid write_ulonglong_array(long[] seq, int offset, int length)Writes the array of IDL unsigned long longs (represented as Java longs) from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_longlong_arrayvoid write_longlong_array(long[] seq, int offset, int length)Writes the array of IDL long longs from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_float_arrayvoid write_float_array(float[] seq, int offset, int length)Writes the array of IDL floats from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 - 
write_double_arrayvoid write_double_array(double[] seq, int offset, int length)Writes the array of IDL doubles from offset for length elements to the output stream.- Parameters:
- seq- The array to be written.
- offset- The index into seq of the first element to write to the output stream.
- length- The number of elements to write to the output stream.
 
 
- 
 
-