org.omg.CORBA
DynFixed
public interface DynFixed extends DynAny
fixed
, allowing to get and set its value
in the form of the binary representation.
The format, described in CORBA specification, requires to store
data in hexadecimal format, two digits per byte (oceted), most
significant digit first. The last half-byte in the representation
stores the sign, being 0xD for negative numbers and 0xC for
zero and positive numbers. To have the even number of half bytes,
0x0 is appended to the beginning, if required. The position of the
decimal point is not stored.gnu.CORBA.BigDecimalHelper
Modifier and Type | Method and Description |
---|---|
byte[] |
get_value()
Deprecated.
Get the value of this DynFixed in the binary form.
|
void |
set_value(byte[] a_value)
Deprecated.
Sets the value of this DynFixed from the binary representation.
|
assign, copy, current_component, destroy, from_any, get_any, get_boolean, get_char, get_double, get_float, get_long, get_longlong, get_octet, get_reference, get_short, get_string, get_typecode, get_ulong, get_ulonglong, get_ushort, get_val, get_wchar, get_wstring, insert_any, insert_boolean, insert_char, insert_double, insert_float, insert_long, insert_longlong, insert_octet, insert_reference, insert_short, insert_string, insert_typecode, insert_ulong, insert_ulonglong, insert_ushort, insert_val, insert_wchar, insert_wstring, next, rewind, seek, to_any, type
_create_request, _create_request, _duplicate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _is_a, _is_equivalent, _non_existent, _release, _request, _set_policy_override
byte[] get_value()
void set_value(byte[] a_value) throws InvalidValue
a_value
- the byte array, representing a CORBA fixed
,
as defined in the header comment.InvalidValue