org.omg.DynamicAny

Interface DynValueBoxOperations

public interface DynValueBoxOperations extends DynValueCommonOperations, DynAnyOperations

Defines operations, applicable for the boxed value type.
Method Summary
Anyget_boxed_value()
Get the return the content of the "box" as the Any.
DynAnyget_boxed_value_as_dyn_any()
Get the return the content of the "box" as the DynAny.
voidset_boxed_value(Any boxIt)
Set the value of the "box" as Any.
voidset_boxed_value_as_dyn_any(DynAny boxIt)
Set the value of the "box" from DynAny.

Method Detail

get_boxed_value

public Any get_boxed_value()
Get the return the content of the "box" as the Any.

Throws: InvalidValue if the object is holding null.

get_boxed_value_as_dyn_any

public DynAny get_boxed_value_as_dyn_any()
Get the return the content of the "box" as the DynAny.

Throws: InvalidValue if the object is holding null.

set_boxed_value

public void set_boxed_value(Any boxIt)
Set the value of the "box" as Any.

Parameters: boxIt a value to place into the box.

Throws: TypeMismatch if the type is not matching the current boxed value type.

set_boxed_value_as_dyn_any

public void set_boxed_value_as_dyn_any(DynAny boxIt)
Set the value of the "box" from DynAny.

Parameters: boxIt a value to box.

Throws: TypeMismatch if the type is not matching the current boxed value type.