所有类
org.omg.CORBA
类 FixedHolder
java.lang.Object
org.omg.CORBA.FixedHolder
- 所有已实现的接口:
- Streamable
-
public final class FixedHolder
- extends Object
- implements Streamable
Fixed 的 Holder。有关 Holder 文件的更多信息,请参阅“生成的文件:Holder 文件”。
FixedHolder 是 IDL "fixed" 类型值的容器类,它被映射到 Java 类 java.math.BigDecimal。通常用于存储 "out" 和 "inout" IDL 方法参数。如果 IDL 方法签名将 fixed 作为 "out" 或 "inout" 参数,则程序员必须传递 FixedHolder 实例作为方法调用中的相应参数;对于 "inout" 参数,程序员还必须填充将被发送到服务器的 "in" 值。在方法调用返回之前,ORB 将填充与从服务器返回的 "out" 值对应的包含值。
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
value
public BigDecimal value
-
FixedHolder 保存的值。
FixedHolder
public FixedHolder()
-
构造 FixedHolder,不初始化所包含的值。
FixedHolder
public FixedHolder(BigDecimal initial)
-
构造 FixedHolder,并使用给定值初始化。
- 参数:
initial
- 用来初始化 FixedHolder 的值
_read
public void _read(InputStream input)
-
从输入流读取定点值,并将其存储在值成员中。
-
- 指定者:
-
接口
Streamable
中的 _read
-
- 参数:
input
- 将从中读取数据的 InputStream
。
_write
public void _write(OutputStream output)
-
将存储在此 holder 中的定点值写入
OutputStream
。
-
- 指定者:
-
接口
Streamable
中的 _write
-
- 参数:
output
- 将写入值的 OutputStream
。
_type
public TypeCode _type()
-
返回此 holder 对象的
TypeCode
。
-
- 指定者:
-
接口
Streamable
中的 _type
-
- 返回:
TypeCode
对象。
所有类