|
VisiBroker for Java |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface DataOutputStream
Provides methods to write primitive data types to the output stream when marshaling customer value types.
| Method Summary | |
|---|---|
void |
write_Abstract(java.lang.Object value)
Writes an Abstract Interface to the output stream. |
void |
write_any_array(Any[] seq,
int offset,
int length)
Writes an array of CORBA::Any to the output stream. |
void |
write_any(Any value)
Writes a CORBA::Any to the output stream. |
void |
write_boolean_array(boolean[] seq,
int offset,
int length)
Writes an array of boolean to the output stream. |
void |
write_boolean(boolean value)
Writes a boolean to the output stream. |
void |
write_char_array(char[] seq,
int offset,
int length)
Writes an array of IDL char to the output stream. |
void |
write_char(char value)
Writes an IDL char to the output stream. |
void |
write_double_array(double[] seq,
int offset,
int length)
Writes an array of IDL double to the output stream. |
void |
write_double(double value)
Writes an IDL double to the output stream. |
void |
write_float_array(float[] seq,
int offset,
int length)
Writes an array of IDL float to the output stream. |
void |
write_float(float value)
Writes an IDL float to the output stream. |
void |
write_long_array(int[] seq,
int offset,
int length)
Writes an array of IDL long to the output stream. |
void |
write_long(int value)
Writes an IDL long (Java int) to the output stream. |
void |
write_longlong_array(long[] seq,
int offset,
int length)
Writes an array of IDL long long to the output stream. |
void |
write_longlong(long value)
Writes an IDL long long (Java long) to the output stream. |
void |
write_Object(Object value)
Writes a CORBA::Object to the output stream. |
void |
write_octet_array(byte[] seq,
int offset,
int length)
Writes an array of IDL octet to the output stream. |
void |
write_octet(byte value)
Writes an IDL octet to the output stream. |
void |
write_short_array(short[] seq,
int offset,
int length)
Writes an array of IDL short to the output stream. |
void |
write_short(short value)
Writes an IDL short to the output stream. |
void |
write_string(java.lang.String value)
Writes an IDL string to the output stream. |
void |
write_TypeCode(TypeCode value)
Write a TypeCode to the output stream. |
void |
write_ulong_array(int[] seq,
int offset,
int length)
Writes an array of IDL unsigned long to the output stream. |
void |
write_ulong(int value)
Writes an IDL unsigned long (Java int) to the output stream. |
void |
write_ulonglong_array(long[] seq,
int offset,
int length)
Writes an array of IDL unsigned long long to the output stream. |
void |
write_ulonglong(long value)
Writes an IDL unsigned long long (Java long) to the output stream. |
void |
write_ushort_array(short[] seq,
int offset,
int length)
Writes an array of IDL unsigned short to the output stream. |
void |
write_ushort(short value)
Writes an IDL unsigned short to the output stream. |
void |
write_Value(java.io.Serializable value)
Writes an IDL value type to the output stream. |
void |
write_wchar_array(char[] seq,
int offset,
int length)
Writes an array of IDL wchar to the output stream. |
void |
write_wchar(char value)
Writes an IDL wide character to the output stream. |
void |
write_wstring(java.lang.String value)
Writes an IDL wide string to the output stream. |
| Methods inherited from interface org.omg.CORBA.portable.ValueBase |
|---|
_truncatable_ids |
| Method Detail |
|---|
void write_double_array(double[] seq,
int offset,
int length)
seq - array containing double values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_float_array(float[] seq,
int offset,
int length)
seq - array containing float values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_ulonglong_array(long[] seq,
int offset,
int length)
seq - array containing unsigned long long values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_longlong_array(long[] seq,
int offset,
int length)
seq - array containing long long values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_ulong_array(int[] seq,
int offset,
int length)
seq - array containing unsigned long values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_long_array(int[] seq,
int offset,
int length)
seq - array containing long values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_ushort_array(short[] seq,
int offset,
int length)
seq - array containing unsigned short values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_short_array(short[] seq,
int offset,
int length)
seq - array containing short values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_octet_array(byte[] seq,
int offset,
int length)
seq - array containing octet values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_wchar_array(char[] seq,
int offset,
int length)
seq - array containing wchar values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_char_array(char[] seq,
int offset,
int length)
seq - array containing char values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_boolean_array(boolean[] seq,
int offset,
int length)
seq - array containing boolean values.offset - the index into the array of the first element to be written.length - number of elements to write.
void write_any_array(Any[] seq,
int offset,
int length)
CORBA::Any to the output stream.
seq - array containing CORBA::Anyoffset - the index into the array of the first element to be written.length - number of elements to write.void write_TypeCode(TypeCode value)
value - the TypeCode to be writte.void write_Value(java.io.Serializable value)
value - the IDL value type to be written.void write_Abstract(java.lang.Object value)
value - the abstract interface to be written.void write_Object(Object value)
CORBA::Object to the output stream.
value - the CORBA::Object to be written.void write_string(java.lang.String value)
value - the IDL string value to be written.void write_double(double value)
value - The IDL double value to be written.void write_float(float value)
value - The IDL float value to be written.void write_ulonglong(long value)
value - The IDL unsigned long long value to be written.void write_longlong(long value)
value - The IDL long long value to be written.void write_ulong(int value)
value - The IDL unsigned long value to be written.void write_long(int value)
value - The IDL long value to be written.void write_ushort(short value)
value - the IDL unsigned short value to be written.void write_short(short value)
value - the IDL short value to be written.void write_octet(byte value)
value - the IDL octet value to be written.void write_wstring(java.lang.String value)
value - the IDL wide string value to be written.void write_wchar(char value)
value - the IDL wide char value to be written.void write_char(char value)
value - the IDL char value to be written.void write_boolean(boolean value)
value - the boolean value to be written.void write_any(Any value)
CORBA::Any to the output stream.
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||