- java.lang.Object
-
- java.io.OutputStream
-
- org.omg.CORBA.portable.OutputStream
-
- org.omg.CORBA_2_3.portable.OutputStream
-
- All Implemented Interfaces:
-
Closeable
,Flushable
,AutoCloseable
public abstract class OutputStream extends OutputStream
OutputStream提供了将所有映射的IDL类型写入流的接口。 它扩展了org.omg.CORBA.portable.OutputStream,并定义了由CORBA 2.3定义的新方法。- 从以下版本开始:
- JDK1.2
- 另请参见:
-
OutputStream
-
-
构造方法摘要
构造方法 Constructor 描述 OutputStream()
创建一个这个类的新实例。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
write_abstract_interface(Object obj)
汇总值对象或存根对象。void
write_value(Serializable value)
为输出流调度值类型。void
write_value(Serializable value, Class clz)
为输出流调度值类型。void
write_value(Serializable value, String repository_id)
为输出流调度值类型。void
write_value(Serializable value, BoxedValueHelper factory)
为输出流调度值类型。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from class java.io.OutputStream
close, flush, write, write
-
Methods inherited from class org.omg.CORBA.portable.OutputStream
create_input_stream, orb, write, write_any, write_boolean, write_boolean_array, write_char, write_char_array, write_Context, write_double, write_double_array, write_fixed, write_float, write_float_array, write_long, write_long_array, write_longlong, write_longlong_array, write_Object, write_octet, write_octet_array, write_Principal, write_short, write_short_array, write_string, write_TypeCode, write_ulong, write_ulong_array, write_ulonglong, write_ulonglong_array, write_ushort, write_ushort_array, write_wchar, write_wchar_array, write_wstring
-
-
-
-
方法详细信息
-
write_value
public void write_value(Serializable value)
为输出流调度值类型。- 参数
-
value
- 是value
值
-
write_value
public void write_value(Serializable value, Class clz)
为输出流调度值类型。- 参数
-
value
- 是value
值 -
clz
- 是要被封送的值的声明类型
-
write_value
public void write_value(Serializable value, String repository_id)
为输出流调度值类型。- 参数
-
value
- 是value
值 -
repository_id
- 标识要封送的值类型的类型
-
write_value
public void write_value(Serializable value, BoxedValueHelper factory)
为输出流调度值类型。- 参数
-
value
- 是value
值 -
factory
- 是用于编组框值的帮助器的实例
-
write_abstract_interface
public void write_abstract_interface(Object obj)
汇总值对象或存根对象。- 参数
-
obj
- the actual value object to marshal or the stub to be marshalled
-
-