Package org.omg.DynamicAny
Class DynValueBoxHelper
- java.lang.Object
-
- org.omg.DynamicAny.DynValueBoxHelper
-
public abstract class DynValueBoxHelper extends java.lang.Object
DynValueBox objects support the manipulation of IDL boxed value types. The DynValueBox interface can represent both null and non-null value types. For a DynValueBox representing a non-null value type, the DynValueBox has a single component of the boxed type. A DynValueBox representing a null value type has no components and a current position of -1.
-
-
Field Summary
Fields Modifier and Type Field Description private static TypeCode
__typeCode
private static java.lang.String
_id
-
Constructor Summary
Constructors Constructor Description DynValueBoxHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DynValueBox
extract(Any a)
static java.lang.String
id()
static void
insert(Any a, DynValueBox that)
static DynValueBox
narrow(Object obj)
static DynValueBox
read(InputStream istream)
static TypeCode
type()
static DynValueBox
unchecked_narrow(Object obj)
static void
write(OutputStream ostream, DynValueBox value)
-
-
-
Field Detail
-
_id
private static java.lang.String _id
-
__typeCode
private static TypeCode __typeCode
-
-
Method Detail
-
insert
public static void insert(Any a, DynValueBox that)
-
extract
public static DynValueBox extract(Any a)
-
type
public static TypeCode type()
-
id
public static java.lang.String id()
-
read
public static DynValueBox read(InputStream istream)
-
write
public static void write(OutputStream ostream, DynValueBox value)
-
narrow
public static DynValueBox narrow(Object obj)
-
unchecked_narrow
public static DynValueBox unchecked_narrow(Object obj)
-
-