Package org.omg.DynamicAny
Class _DynUnionStub
java.lang.Object
org.omg.CORBA.portable.ObjectImpl
org.omg.DynamicAny._DynUnionStub
- All Implemented Interfaces:
Serializable,Object,IDLEntity,DynAny,DynAnyOperations,DynUnion,DynUnionOperations
DynUnion objects support the manipulation of IDL unions.
A union can have only two valid current positions:
- zero, which denotes the discriminator
- one, which denotes the active member
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionString[]_ids()Retrieves a string array containing the repository identifiers supported by thisObjectImplobject.voidInitializes the value associated with a DynAny object with the value associated with another DynAny object.intReturns the number of components of a DynAny.copy()Creates a new DynAny object whose value is a deep copy of the DynAny on which it is invoked.Returns the DynAny for the component at the current position.voiddestroy()Destroys a DynAny object.Returns the TCKind value of the discriminators TypeCode.booleanCompares two DynAny values for equality.voidInitializes the value associated with a DynAny object with the value contained in an any.get_any()Extracts an Any value contained in the Any represented by this DynAny.booleanExtracts the boolean value from this DynAny.charget_char()Extracts the char value from this DynAny.Returns the current discriminator value.doubleExtracts the double value from this DynAny.Extracts the Any value contained in the Any represented by this DynAny and returns it wrapped into a new DynAny.floatExtracts the float value from this DynAny.intget_long()Extracts the integer value from this DynAny.longExtracts the long value from this DynAny.byteExtracts the byte value from this DynAny.Extracts the reference to a CORBA Object from this DynAny.shortExtracts the short value from this DynAny.Extracts the string value from this DynAny.Extracts the TypeCode object from this DynAny.intExtracts the integer value from this DynAny.longExtracts the long value from this DynAny.shortExtracts the short value from this DynAny.get_val()Extracts a Serializable object from this DynAny.charExtracts the long value from this DynAny.Extracts the string value from this DynAny.booleanReturns true if the union has no active member, that is, the unions value consists solely of its discriminator because the discriminator has a value that is not listed as an explicit case label.voidinsert_any(Any value) Inserts an Any value into the Any represented by this DynAny.voidinsert_boolean(boolean value) Inserts a boolean value into the DynAny.voidinsert_char(char value) Inserts a char value into the DynAny.voidinsert_double(double value) Inserts a double value into the DynAny.voidinsert_dyn_any(DynAny value) Inserts the Any value contained in the parameter DynAny into the Any represented by this DynAny.voidinsert_float(float value) Inserts a float value into the DynAny.voidinsert_long(int value) Inserts an integer value into the DynAny.voidinsert_longlong(long value) Inserts a long value into the DynAny.voidinsert_octet(byte value) Inserts a byte value into the DynAny.voidinsert_reference(Object value) Inserts a reference to a CORBA object into the DynAny.voidinsert_short(short value) Inserts a short value into the DynAny.voidinsert_string(String value) Inserts a string value into the DynAny.voidinsert_typecode(TypeCode value) Inserts a TypeCode object into the DynAny.voidinsert_ulong(int value) Inserts an integer value into the DynAny.voidinsert_ulonglong(long value) Inserts a long value into the DynAny.voidinsert_ushort(short value) Inserts a short value into the DynAny.voidinsert_val(Serializable value) Inserts a reference to a Serializable object into this DynAny.voidinsert_wchar(char value) Inserts a char value into the DynAny.voidinsert_wstring(String value) Inserts a string value into the DynAny.member()Returns the currently active member.Returns the TCKind value of the currently active members TypeCode.Returns the name of the currently active member.booleannext()Advances the current position to the next component.voidrewind()Is equivalent to seek(0).booleanseek(int index) Sets the current position to index.voidSets the discriminator of the DynUnion to the specified value.voidSets the discriminator to a value that is consistent with the value of the default case of a union.voidSets the discriminator to a value that does not correspond to any of the unions case labels.to_any()Creates an any value from a DynAny object.type()Returns the TypeCode associated with this DynAny object.Methods inherited from class org.omg.CORBA.portable.ObjectImpl
_create_request, _create_request, _duplicate, _get_delegate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _invoke, _is_a, _is_equivalent, _is_local, _non_existent, _orb, _release, _releaseReply, _request, _request, _servant_postinvoke, _servant_preinvoke, _set_delegate, _set_policy_override, equals, hashCode, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.omg.CORBA.Object
_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
-
Field Details
-
_opsClass
-
-
Constructor Details
-
_DynUnionStub
public _DynUnionStub()
-
-
Method Details
-
get_discriminator
Returns the current discriminator value.- Specified by:
get_discriminatorin interfaceDynUnionOperations
-
set_discriminator
Sets the discriminator of the DynUnion to the specified value. Setting the discriminator to a value that is consistent with the currently active union member does not affect the currently active member. Setting the discriminator to a value that is inconsistent with the currently active member deactivates the member and activates the member that is consistent with the new discriminator value (if there is a member for that value) by initializing the member to its default value. Setting the discriminator of a union sets the current position to 0 if the discriminator value indicates a non-existent union member (has_no_active_member returns true in this case). Otherwise, if the discriminator value indicates a named union member, the current position is set to 1 (has_no_active_member returns false and component_count returns 2 in this case).- Specified by:
set_discriminatorin interfaceDynUnionOperations- Throws:
TypeMismatch- if the TypeCode of the parameter is not equivalent to the TypeCode of the union's discriminatorTypeMismatch
-
set_to_default_member
Sets the discriminator to a value that is consistent with the value of the default case of a union. It sets the current position to zero and causes component_count to return 2.- Specified by:
set_to_default_memberin interfaceDynUnionOperations- Throws:
TypeMismatch- if the union does not have an explicit default caseTypeMismatch
-
set_to_no_active_member
Sets the discriminator to a value that does not correspond to any of the unions case labels. It sets the current position to zero and causes component_count to return 1.- Specified by:
set_to_no_active_memberin interfaceDynUnionOperations- Throws:
TypeMismatch- if the union has an explicit default case or if it uses the entire range of discriminator values for explicit case labelsTypeMismatch
-
has_no_active_member
public boolean has_no_active_member()Returns true if the union has no active member, that is, the unions value consists solely of its discriminator because the discriminator has a value that is not listed as an explicit case label. Calling this operation on a union that has a default case returns false. Calling this operation on a union that uses the entire range of discriminator values for explicit case labels returns false.- Specified by:
has_no_active_memberin interfaceDynUnionOperations
-
discriminator_kind
Returns the TCKind value of the discriminators TypeCode.- Specified by:
discriminator_kindin interfaceDynUnionOperations
-
member_kind
Returns the TCKind value of the currently active members TypeCode.- Specified by:
member_kindin interfaceDynUnionOperations- Throws:
InvalidValue- if the union does not have a currently active memberInvalidValue
-
member
Returns the currently active member. Note that the returned reference remains valid only for as long as the currently active member does not change. Using the returned reference beyond the life time of the currently active member raises OBJECT_NOT_EXIST.- Specified by:
memberin interfaceDynUnionOperations- Throws:
InvalidValue- if the union has no active memberInvalidValue
-
member_name
Returns the name of the currently active member. If the unions TypeCode does not contain a member name for the currently active member, the operation returns an empty string.- Specified by:
member_namein interfaceDynUnionOperations- Throws:
InvalidValue- if the union has no active memberInvalidValue
-
type
Returns the TypeCode associated with this DynAny object. A DynAny object is created with a TypeCode value assigned to it. This TypeCode value determines the type of the value handled through the DynAny object. Note that the TypeCode associated with a DynAny object is initialized at the time the DynAny is created and cannot be changed during lifetime of the DynAny object.- Specified by:
typein interfaceDynAnyOperations- Returns:
- The TypeCode associated with this DynAny object
-
assign
Initializes the value associated with a DynAny object with the value associated with another DynAny object. The current position of the target DynAny is set to zero for values that have components and to -1 for values that do not have components.- Specified by:
assignin interfaceDynAnyOperations- Parameters:
dyn_any-- Throws:
TypeMismatch- if the type of the passed DynAny is not equivalent to the type of target DynAnyTypeMismatch
-
from_any
Initializes the value associated with a DynAny object with the value contained in an any. The current position of the target DynAny is set to zero for values that have components and to -1 for values that do not have components.- Specified by:
from_anyin interfaceDynAnyOperations- Throws:
TypeMismatch- if the type of the passed Any is not equivalent to the type of target DynAnyInvalidValue- if the passed Any does not contain a legal value (such as a null string)TypeMismatchInvalidValue
-
to_any
Creates an any value from a DynAny object. A copy of the TypeCode associated with the DynAny object is assigned to the resulting any. The value associated with the DynAny object is copied into the any.- Specified by:
to_anyin interfaceDynAnyOperations- Returns:
- a new Any object with the same value and TypeCode
-
equal
Compares two DynAny values for equality. Two DynAny values are equal if their TypeCodes are equivalent and, recursively, all component DynAnys have equal values. The current position of the two DynAnys being compared has no effect on the result of equal.- Specified by:
equalin interfaceDynAnyOperations- Returns:
- true of the DynAnys are equal, false otherwise
-
destroy
public void destroy()Destroys a DynAny object. This operation frees any resources used to represent the data value associated with a DynAny object. It must be invoked on references obtained from one of the creation operations on the ORB interface or on a reference returned by DynAny.copy() to avoid resource leaks. Invoking destroy on component DynAny objects (for example, on objects returned by the current_component operation) does nothing. Destruction of a DynAny object implies destruction of all DynAny objects obtained from it. That is, references to components of a destroyed DynAny become invalid. Invocations on such references raise OBJECT_NOT_EXIST. It is possible to manipulate a component of a DynAny beyond the life time of the DynAny from which the component was obtained by making a copy of the component with the copy operation before destroying the DynAny from which the component was obtained.- Specified by:
destroyin interfaceDynAnyOperations
-
copy
Creates a new DynAny object whose value is a deep copy of the DynAny on which it is invoked. The operation is polymorphic, that is, invoking it on one of the types derived from DynAny, such as DynStruct, creates the derived type but returns its reference as the DynAny base type.- Specified by:
copyin interfaceDynAnyOperations- Returns:
- a deep copy of the DynAny object
-
insert_boolean
Inserts a boolean value into the DynAny.- Specified by:
insert_booleanin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_octet
Inserts a byte value into the DynAny. The IDL octet data type is mapped to the Java byte data type.- Specified by:
insert_octetin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_char
Inserts a char value into the DynAny.- Specified by:
insert_charin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_short
Inserts a short value into the DynAny.- Specified by:
insert_shortin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_ushort
Inserts a short value into the DynAny. The IDL ushort data type is mapped to the Java short data type.- Specified by:
insert_ushortin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_long
Inserts an integer value into the DynAny. The IDL long data type is mapped to the Java int data type.- Specified by:
insert_longin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_ulong
Inserts an integer value into the DynAny. The IDL ulong data type is mapped to the Java int data type.- Specified by:
insert_ulongin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_float
Inserts a float value into the DynAny.- Specified by:
insert_floatin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_double
Inserts a double value into the DynAny.- Specified by:
insert_doublein interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_string
Inserts a string value into the DynAny. Both bounded and unbounded strings are inserted using this method.- Specified by:
insert_stringin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1InvalidValue- if the string inserted is longer than the bound of a bounded stringTypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_reference
Inserts a reference to a CORBA object into the DynAny.- Specified by:
insert_referencein interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_typecode
Inserts a TypeCode object into the DynAny.- Specified by:
insert_typecodein interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_longlong
Inserts a long value into the DynAny. The IDL long long data type is mapped to the Java long data type.- Specified by:
insert_longlongin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_ulonglong
Inserts a long value into the DynAny. The IDL unsigned long long data type is mapped to the Java long data type.- Specified by:
insert_ulonglongin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_wchar
Inserts a char value into the DynAny. The IDL wchar data type is mapped to the Java char data type.- Specified by:
insert_wcharin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_wstring
Inserts a string value into the DynAny. Both bounded and unbounded strings are inserted using this method.- Specified by:
insert_wstringin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1InvalidValue- if the string inserted is longer than the bound of a bounded stringTypeMismatchInvalidValue
-
insert_any
Inserts an Any value into the Any represented by this DynAny.- Specified by:
insert_anyin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_dyn_any
Inserts the Any value contained in the parameter DynAny into the Any represented by this DynAny.- Specified by:
insert_dyn_anyin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
insert_val
Inserts a reference to a Serializable object into this DynAny. The IDL ValueBase type is mapped to the Java Serializable type.- Specified by:
insert_valin interfaceDynAnyOperations- Throws:
InvalidValue- if this DynAny has components but has a current position of -1TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
get_boolean
Extracts the boolean value from this DynAny.- Specified by:
get_booleanin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_octet
Extracts the byte value from this DynAny. The IDL octet data type is mapped to the Java byte data type.- Specified by:
get_octetin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_char
Extracts the char value from this DynAny.- Specified by:
get_charin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_short
Extracts the short value from this DynAny.- Specified by:
get_shortin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_ushort
Extracts the short value from this DynAny. The IDL ushort data type is mapped to the Java short data type.- Specified by:
get_ushortin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_long
Extracts the integer value from this DynAny. The IDL long data type is mapped to the Java int data type.- Specified by:
get_longin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_ulong
Extracts the integer value from this DynAny. The IDL ulong data type is mapped to the Java int data type.- Specified by:
get_ulongin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_float
Extracts the float value from this DynAny.- Specified by:
get_floatin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_double
Extracts the double value from this DynAny.- Specified by:
get_doublein interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_string
Extracts the string value from this DynAny. Both bounded and unbounded strings are extracted using this method.- Specified by:
get_stringin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_reference
Extracts the reference to a CORBA Object from this DynAny.- Specified by:
get_referencein interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_typecode
Extracts the TypeCode object from this DynAny.- Specified by:
get_typecodein interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_longlong
Extracts the long value from this DynAny. The IDL long long data type is mapped to the Java long data type.- Specified by:
get_longlongin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_ulonglong
Extracts the long value from this DynAny. The IDL unsigned long long data type is mapped to the Java long data type.- Specified by:
get_ulonglongin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_wchar
Extracts the long value from this DynAny. The IDL wchar data type is mapped to the Java char data type.- Specified by:
get_wcharin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_wstring
Extracts the string value from this DynAny. Both bounded and unbounded strings are extracted using this method.- Specified by:
get_wstringin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsTypeMismatchInvalidValue
-
get_any
Extracts an Any value contained in the Any represented by this DynAny.- Specified by:
get_anyin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_dyn_any
Extracts the Any value contained in the Any represented by this DynAny and returns it wrapped into a new DynAny.- Specified by:
get_dyn_anyin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
get_val
Extracts a Serializable object from this DynAny. The IDL ValueBase type is mapped to the Java Serializable type.- Specified by:
get_valin interfaceDynAnyOperations- Throws:
TypeMismatch- if the accessed component in the DynAny is of a type that is not equivalent to the requested type.TypeMismatch- if called on a DynAny whose current component itself has componentsInvalidValue- if this DynAny has components but has a current position of -1TypeMismatchInvalidValue
-
seek
public boolean seek(int index) Sets the current position to index. The current position is indexed 0 to n-1, that is, index zero corresponds to the first component. The operation returns true if the resulting current position indicates a component of the DynAny and false if index indicates a position that does not correspond to a component. Calling seek with a negative index is legal. It sets the current position to -1 to indicate no component and returns false. Passing a non-negative index value for a DynAny that does not have a component at the corresponding position sets the current position to -1 and returns false.- Specified by:
seekin interfaceDynAnyOperations
-
rewind
public void rewind()Is equivalent to seek(0).- Specified by:
rewindin interfaceDynAnyOperations
-
next
public boolean next()Advances the current position to the next component. The operation returns true while the resulting current position indicates a component, false otherwise. A false return value leaves the current position at -1. Invoking next on a DynAny without components leaves the current position at -1 and returns false.- Specified by:
nextin interfaceDynAnyOperations
-
component_count
public int component_count()Returns the number of components of a DynAny. For a DynAny without components, it returns zero. The operation only counts the components at the top level. For example, if component_count is invoked on a DynStruct with a single member, the return value is 1, irrespective of the type of the member.- For sequences, the operation returns the current number of elements.
- For structures, exceptions, and value types, the operation returns the number of members.
- For arrays, the operation returns the number of elements.
- For unions, the operation returns 2 if the discriminator indicates that a named member is active, otherwise, it returns 1.
- For DynFixed and DynEnum, the operation returns zero.
- Specified by:
component_countin interfaceDynAnyOperations
-
current_component
Returns the DynAny for the component at the current position. It does not advance the current position, so repeated calls to current_component without an intervening call to rewind, next, or seek return the same component. The returned DynAny object reference can be used to get/set the value of the current component. If the current component represents a complex type, the returned reference can be narrowed based on the TypeCode to get the interface corresponding to the to the complex type. Calling current_component on a DynAny that cannot have components, such as a DynEnum or an empty exception, raises TypeMismatch. Calling current_component on a DynAny whose current position is -1 returns a nil reference. The iteration operations, together with current_component, can be used to dynamically compose an any value. After creating a dynamic any, such as a DynStruct, current_component and next can be used to initialize all the components of the value. Once the dynamic value is completely initialized, to_any creates the corresponding any value.- Specified by:
current_componentin interfaceDynAnyOperations- Throws:
TypeMismatch- If called on a DynAny that cannot have components, such as a DynEnum or an empty exceptionTypeMismatch
-
_ids
Description copied from class:ObjectImplRetrieves a string array containing the repository identifiers supported by thisObjectImplobject. For example, for a stub, this method returns information about all the interfaces supported by the stub.- Specified by:
_idsin classObjectImpl- Returns:
- the array of all repository identifiers supported by this
ObjectImplinstance
-