Java 类org.omg.CORBA.DynAnyPackage.TypeMismatch 实例源码

项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:javify    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:jvm-stm    文件:DynAny.java   
/**
 * 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;
项目:JamVM-PH    文件:DynAny.java   
/**
 * 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;
项目:JamVM-PH    文件:DynAny.java   
/**
 * 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;
项目:JamVM-PH    文件:DynAny.java   
/**
 * 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;
项目:JamVM-PH    文件:DynAny.java   
/**
 * 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;