1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
/* * @(#)TCKind.java 1.29 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package org.omg.CORBA; /** * The Java mapping of the IDL enum <code>TCKind</code>, which * specifies the kind of a <code>TypeCode</code> object. There is * one kind for each primitive and essential IDL data type. * <P> * The class <code>TCKind</code> consists of: * <UL> * <LI>a set of <code>int</code> constants, one for each * kind of IDL data type. These <code>int</code> constants * make it possible to use a <code>switch</code> statement. * <LI>a set of <code>TCKind</code> constants, one for each * kind of IDL data type. The <code>value</code> field for * each <code>TCKind</code> instance is initialized with * the <code>int</code> constant that corresponds with * the IDL data type that the instance represents. * <LI>the method <code>from_int</code>for converting * an <code>int</code> to its * corresponding <code>TCKind</code> instance * <P>Example: * <PRE> * org.omg.CORBA.TCKind k = org.omg.CORBA.TCKind.from_int( * org.omg.CORBA.TCKind._tk_string); * </PRE> * The variable <code>k</code> represents the <code>TCKind</code> * instance for the IDL type <code>string</code>, which is * <code>tk_string</code>. * <P> * <LI>the method <code>value</code> for accessing the * <code>_value</code> field of a <code>TCKind</code> constant * <P>Example: * <PRE> * int i = org.omg.CORBA.TCKind.tk_char.value(); * </PRE> * The variable <code>i</code> represents 9, the value for the * IDL data type <code>char</code>. * </UL> * <P>The <code>value</code> field of a <code>TCKind</code> instance * is the CDR encoding used for a <code>TypeCode</code> object in * an IIOP message. */ public class TCKind { /** * The <code>int</code> constant for a <code>null</code> IDL data type. */ public static final int _tk_null = 0; /** * The <code>int</code> constant for the IDL data type <code>void</code>. */ public static final int _tk_void = 1; /** * The <code>int</code> constant for the IDL data type <code>short</code>. */ public static final int _tk_short = 2; /** * The <code>int</code> constant for the IDL data type <code>long</code>. */ public static final int _tk_long = 3; /** * The <code>int</code> constant for the IDL data type <code>ushort</code>. */ public static final int _tk_ushort = 4; /** * The <code>int</code> constant for the IDL data type <code>ulong</code>. */ public static final int _tk_ulong = 5; /** * The <code>int</code> constant for the IDL data type <code>float</code>. */ public static final int _tk_float = 6; /** * The <code>int</code> constant for the IDL data type <code>double</code>. */ public static final int _tk_double = 7; /** * The <code>int</code> constant for the IDL data type <code>boolean</code>. */ public static final int _tk_boolean = 8; /** * The <code>int</code> constant for the IDL data type <code>char</code>. */ public static final int _tk_char = 9; /** * The <code>int</code> constant for the IDL data type <code>octet</code>. */ public static final int _tk_octet = 10; /** * The <code>int</code> constant for the IDL data type <code>any</code>. */ public static final int _tk_any = 11; /** * The <code>int</code> constant for the IDL data type <code>TypeCode</code>. */ public static final int _tk_TypeCode = 12; /** * The <code>int</code> constant for the IDL data type <code>Principal</code>. */ public static final int _tk_Principal = 13; /** * The <code>int</code> constant for the IDL data type <code>objref</code>. */ public static final int _tk_objref = 14; /** * The <code>int</code> constant for the IDL data type <code>struct</code>. */ public static final int _tk_struct = 15; /** * The <code>int</code> constant for the IDL data type <code>union</code>. */ public static final int _tk_union = 16; /** * The <code>int</code> constant for the IDL data type <code>enum</code>. */ public static final int _tk_enum = 17; /** * The <code>int</code> constant for the IDL data type <code>string</code>. */ public static final int _tk_string = 18; /** * The <code>int</code> constant for the IDL data type <code>sequence</code>. */ public static final int _tk_sequence = 19; /** * The <code>int</code> constant for the IDL data type <code>array</code>. */ public static final int _tk_array = 20; /** * The <code>int</code> constant for the IDL data type <code>alias</code>. */ public static final int _tk_alias = 21; /** * The <code>int</code> constant for the IDL data type <code>except</code>. */ public static final int _tk_except = 22; /** * The <code>int</code> constant for the IDL data type <code>longlong</code>. */ public static final int _tk_longlong = 23; /** * The <code>int</code> constant for the IDL data type <code>ulonglong</code>. */ public static final int _tk_ulonglong = 24; /** * The <code>int</code> constant for the IDL data type <code>longdouble</code>. */ public static final int _tk_longdouble = 25; /** * The <code>int</code> constant for the IDL data type <code>wchar</code>. */ public static final int _tk_wchar = 26; /** * The <code>int</code> constant for the IDL data type <code>wstring</code>. */ public static final int _tk_wstring = 27; /** * The <code>int</code> constant for the IDL data type <code>fixed</code>. */ public static final int _tk_fixed = 28; /** * The <code>int</code> constant for the IDL data type <code>value</code>. */ public static final int _tk_value = 29; // orbos 98-01-18: Objects By Value /** * The <code>int</code> constant for the IDL data type <code>value_box</code>. */ public static final int _tk_value_box = 30; // orbos 98-01-18: Objects By Value /** * The <code>int</code> constant for the IDL data type <code>native</code>. */ public static final int _tk_native = 31; // Verify /** * The <code>int</code> constant for the IDL data type <code>abstract interface</code>. */ public static final int _tk_abstract_interface = 32; /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_null</code>. */ public static final TCKind tk_null = new TCKind(_tk_null); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_void</code>. */ public static final TCKind tk_void = new TCKind(_tk_void); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_short</code>. */ public static final TCKind tk_short = new TCKind(_tk_short); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_long</code>. */ public static final TCKind tk_long = new TCKind(_tk_long); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_ushort</code>. */ public static final TCKind tk_ushort = new TCKind(_tk_ushort); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_ulong</code>. */ public static final TCKind tk_ulong = new TCKind(_tk_ulong); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_float</code>. */ public static final TCKind tk_float = new TCKind(_tk_float); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_double</code>. */ public static final TCKind tk_double = new TCKind(_tk_double); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_boolean</code>. */ public static final TCKind tk_boolean = new TCKind(_tk_boolean); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_char</code>. */ public static final TCKind tk_char = new TCKind(_tk_char); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_octet</code>. */ public static final TCKind tk_octet = new TCKind(_tk_octet); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_any</code>. */ public static final TCKind tk_any = new TCKind(_tk_any); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_TypeCode</code>. */ public static final TCKind tk_TypeCode = new TCKind(_tk_TypeCode); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_Principal</code>. */ public static final TCKind tk_Principal = new TCKind(_tk_Principal); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_objref</code>. */ public static final TCKind tk_objref = new TCKind(_tk_objref); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_struct</code>. */ public static final TCKind tk_struct = new TCKind(_tk_struct); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_union</code>. */ public static final TCKind tk_union = new TCKind(_tk_union); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_enum</code>. */ public static final TCKind tk_enum = new TCKind(_tk_enum); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_string</code>. */ public static final TCKind tk_string = new TCKind(_tk_string); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_sequence</code>. */ public static final TCKind tk_sequence = new TCKind(_tk_sequence); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_array</code>. */ public static final TCKind tk_array = new TCKind(_tk_array); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_alias</code>. */ public static final TCKind tk_alias = new TCKind(_tk_alias); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_except</code>. */ public static final TCKind tk_except = new TCKind(_tk_except); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_longlong</code>. */ public static final TCKind tk_longlong = new TCKind(_tk_longlong); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_ulonglong</code>. */ public static final TCKind tk_ulonglong = new TCKind(_tk_ulonglong); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_longdouble</code>. */ public static final TCKind tk_longdouble = new TCKind(_tk_longdouble); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_wchar</code>. */ public static final TCKind tk_wchar = new TCKind(_tk_wchar); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_wstring</code>. */ public static final TCKind tk_wstring = new TCKind(_tk_wstring); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_fixed</code>. */ public static final TCKind tk_fixed = new TCKind(_tk_fixed); // orbos 98-01-18: Objects By Value -- begin /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_value</code>. */ public static final TCKind tk_value = new TCKind(_tk_value); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_value_box</code>. */ public static final TCKind tk_value_box = new TCKind(_tk_value_box); // orbos 98-01-18: Objects By Value -- end /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_native</code>. */ public static final TCKind tk_native = new TCKind(_tk_native); /** * The <code>TCKind</code> constant whose <code>value</code> field is * initialized with <code>TCKind._tk_abstract_interface</code>. */ public static final TCKind tk_abstract_interface = new TCKind(_tk_abstract_interface); /** * Retrieves the value of this <code>TCKind</code> instance. * * @return the <code>int</code> that represents the kind of * IDL data type for this <code>TCKind</code> instance */ public int value() { return _value; } /** * Converts the given <code>int</code> to the corresponding * <code>TCKind</code> instance. * * @param i the <code>int</code> to convert. It must be one of * the <code>int</code> constants in the class * <code>TCKind</code>. * @return the <code>TCKind</code> instance whose <code>value</code> * field matches the given <code>int</code> * @exception BAD_PARAM if the given <code>int</code> does not * match the <code>_value</code> field of * any <code>TCKind</code> instance */ public static TCKind from_int(int i) { switch (i) { case _tk_null: return tk_null; case _tk_void: return tk_void; case _tk_short: return tk_short; case _tk_long: return tk_long; case _tk_ushort: return tk_ushort; case _tk_ulong: return tk_ulong; case _tk_float: return tk_float; case _tk_double: return tk_double; case _tk_boolean: return tk_boolean; case _tk_char: return tk_char; case _tk_octet: return tk_octet; case _tk_any: return tk_any; case _tk_TypeCode: return tk_TypeCode; case _tk_Principal: return tk_Principal; case _tk_objref: return tk_objref; case _tk_struct: return tk_struct; case _tk_union: return tk_union; case _tk_enum: return tk_enum; case _tk_string: return tk_string; case _tk_sequence: return tk_sequence; case _tk_array: return tk_array; case _tk_alias: return tk_alias; case _tk_except: return tk_except; case _tk_longlong: return tk_longlong; case _tk_ulonglong: return tk_ulonglong; case _tk_longdouble: return tk_longdouble; case _tk_wchar: return tk_wchar; case _tk_wstring: return tk_wstring; case _tk_fixed: return tk_fixed; case _tk_value: // orbos 98-01-18: Objects By Value return tk_value; case _tk_value_box: // orbos 98-01-18: Objects By Value return tk_value_box; case _tk_native: return tk_native; case _tk_abstract_interface: return tk_abstract_interface; default: throw new org.omg.CORBA.BAD_PARAM(); } } /** * Creates a new <code>TCKind</code> instance initialized with the given * <code>int</code>. * @deprecated Do not use this constructor as this method should be private * according to the OMG specification. Use {@link #from_int(int)} instead. * * @param _value the <code>int</code> to convert. It must be one of * the <code>int</code> constants in the class * <code>TCKind</code>. * @return a new <code>TCKind</code> instance whose <code>value</code> * field matches the given <code>int</code> */ @Deprecated protected TCKind(int _value){ this._value = _value; } private int _value; }