/** * Retrieves the {@link Any}, stored inside this DynAny. * * @throws TypeMismatch if the typecode of the accessed Any * is not the same as the typecode of this DynAny. */ Any get_any() throws TypeMismatch;
/** * Extract the boolean value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ boolean get_boolean() throws TypeMismatch;
/** * Extract the char value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ char get_char() throws TypeMismatch;
/** * Extract the <code>double</code> value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ double get_double() throws TypeMismatch;
/** * Extract the <code>float</code> value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ float get_float() throws TypeMismatch;
/** * Extract the int (CORBA long) value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ int get_long() throws TypeMismatch;
/** * Extract the long (CORBA long long) value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ long get_longlong() throws TypeMismatch;
/** * Extract the byte (CORBA octet) value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ byte get_octet() throws TypeMismatch;
/** * Extract the CORBA object reference that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ Object get_reference() throws TypeMismatch;
/** * Extract the <code>short</code> value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ short get_short() throws TypeMismatch;
/** * Extract the string value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ String get_string() throws TypeMismatch;
/** * Extract the {@link TypeCode} value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ TypeCode get_typecode() throws TypeMismatch;
/** * Extract the unsigned int (CORBA ulong) value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ int get_ulong() throws TypeMismatch;
/** * Extract the unsingel long (CORBA unsigned long long )value that * is expected to be stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ long get_ulonglong() throws TypeMismatch;
/** * Extract the unsigned short value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ short get_ushort() throws TypeMismatch;
/** * Extract the value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ Serializable get_val() throws TypeMismatch;
/** * Extract the wide (usually UTF-16) character value that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ char get_wchar() throws TypeMismatch;
/** * Extract the wide (usually UFT-16) string that is expected to be * stored in this DynAny. * * @throws TypeMismatch if this DynAny holds the value of the * different type. */ String get_wstring() throws TypeMismatch;