Java Doc for TCKind.java in  » 6.0-JDK-Modules-sun » omg » org » omg » CORBA » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules sun » omg » org.omg.CORBA 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.omg.CORBA.Object
   org.omg.CORBA.TCKind

TCKind
public class TCKind (Code)
The Java mapping of the IDL enum TCKind, which specifies the kind of a TypeCode object. There is one kind for each primitive and essential IDL data type.

The class TCKind consists of:

  • a set of int constants, one for each kind of IDL data type. These int constants make it possible to use a switch statement.
  • a set of TCKind constants, one for each kind of IDL data type. The value field for each TCKind instance is initialized with the int constant that corresponds with the IDL data type that the instance represents.
  • the method from_intfor converting an int to its corresponding TCKind instance

    Example:

     org.omg.CORBA.TCKind k = org.omg.CORBA.TCKind.from_int(
     org.omg.CORBA.TCKind._tk_string);
     
    The variable k represents the TCKind instance for the IDL type string, which is tk_string.

  • the method value for accessing the _value field of a TCKind constant

    Example:

     int i = org.omg.CORBA.TCKind.tk_char.value();
     
    The variable i represents 9, the value for the IDL data type char.

The value field of a TCKind instance is the CDR encoding used for a TypeCode object in an IIOP message.



Field Summary
final public static  int_tk_Principal
     The int constant for the IDL data type Principal.
final public static  int_tk_TypeCode
     The int constant for the IDL data type TypeCode.
final public static  int_tk_abstract_interface
     The int constant for the IDL data type abstract interface.
final public static  int_tk_alias
     The int constant for the IDL data type alias.
final public static  int_tk_any
     The int constant for the IDL data type any.
final public static  int_tk_array
     The int constant for the IDL data type array.
final public static  int_tk_boolean
     The int constant for the IDL data type boolean.
final public static  int_tk_char
     The int constant for the IDL data type char.
final public static  int_tk_double
     The int constant for the IDL data type double.
final public static  int_tk_enum
     The int constant for the IDL data type enum.
final public static  int_tk_except
     The int constant for the IDL data type except.
final public static  int_tk_fixed
     The int constant for the IDL data type fixed.
final public static  int_tk_float
     The int constant for the IDL data type float.
final public static  int_tk_long
     The int constant for the IDL data type long.
final public static  int_tk_longdouble
     The int constant for the IDL data type longdouble.
final public static  int_tk_longlong
     The int constant for the IDL data type longlong.
final public static  int_tk_native
     The int constant for the IDL data type native.
final public static  int_tk_null
     The int constant for a null IDL data type.
final public static  int_tk_objref
     The int constant for the IDL data type objref.
final public static  int_tk_octet
     The int constant for the IDL data type octet.
final public static  int_tk_sequence
     The int constant for the IDL data type sequence.
final public static  int_tk_short
     The int constant for the IDL data type short.
final public static  int_tk_string
     The int constant for the IDL data type string.
final public static  int_tk_struct
     The int constant for the IDL data type struct.
final public static  int_tk_ulong
     The int constant for the IDL data type ulong.
final public static  int_tk_ulonglong
     The int constant for the IDL data type ulonglong.
final public static  int_tk_union
     The int constant for the IDL data type union.
final public static  int_tk_ushort
     The int constant for the IDL data type ushort.
final public static  int_tk_value
     The int constant for the IDL data type value.
final public static  int_tk_value_box
     The int constant for the IDL data type value_box.
final public static  int_tk_void
     The int constant for the IDL data type void.
final public static  int_tk_wchar
     The int constant for the IDL data type wchar.
final public static  int_tk_wstring
     The int constant for the IDL data type wstring.
final public static  TCKindtk_Principal
     The TCKind constant whose value field is initialized with TCKind._tk_Principal.
final public static  TCKindtk_TypeCode
     The TCKind constant whose value field is initialized with TCKind._tk_TypeCode.
final public static  TCKindtk_abstract_interface
     The TCKind constant whose value field is initialized with TCKind._tk_abstract_interface.
final public static  TCKindtk_alias
     The TCKind constant whose value field is initialized with TCKind._tk_alias.
final public static  TCKindtk_any
     The TCKind constant whose value field is initialized with TCKind._tk_any.
final public static  TCKindtk_array
     The TCKind constant whose value field is initialized with TCKind._tk_array.
final public static  TCKindtk_boolean
     The TCKind constant whose value field is initialized with TCKind._tk_boolean.
final public static  TCKindtk_char
     The TCKind constant whose value field is initialized with TCKind._tk_char.
final public static  TCKindtk_double
     The TCKind constant whose value field is initialized with TCKind._tk_double.
final public static  TCKindtk_enum
     The TCKind constant whose value field is initialized with TCKind._tk_enum.
final public static  TCKindtk_except
     The TCKind constant whose value field is initialized with TCKind._tk_except.
final public static  TCKindtk_fixed
     The TCKind constant whose value field is initialized with TCKind._tk_fixed.
final public static  TCKindtk_float
     The TCKind constant whose value field is initialized with TCKind._tk_float.
final public static  TCKindtk_long
     The TCKind constant whose value field is initialized with TCKind._tk_long.
final public static  TCKindtk_longdouble
     The TCKind constant whose value field is initialized with TCKind._tk_longdouble.
final public static  TCKindtk_longlong
     The TCKind constant whose value field is initialized with TCKind._tk_longlong.
final public static  TCKindtk_native
     The TCKind constant whose value field is initialized with TCKind._tk_native.
final public static  TCKindtk_null
     The TCKind constant whose value field is initialized with TCKind._tk_null.
final public static  TCKindtk_objref
     The TCKind constant whose value field is initialized with TCKind._tk_objref.
final public static  TCKindtk_octet
     The TCKind constant whose value field is initialized with TCKind._tk_octet.
final public static  TCKindtk_sequence
     The TCKind constant whose value field is initialized with TCKind._tk_sequence.
final public static  TCKindtk_short
     The TCKind constant whose value field is initialized with TCKind._tk_short.
final public static  TCKindtk_string
     The TCKind constant whose value field is initialized with TCKind._tk_string.
final public static  TCKindtk_struct
     The TCKind constant whose value field is initialized with TCKind._tk_struct.
final public static  TCKindtk_ulong
     The TCKind constant whose value field is initialized with TCKind._tk_ulong.
final public static  TCKindtk_ulonglong
     The TCKind constant whose value field is initialized with TCKind._tk_ulonglong.
final public static  TCKindtk_union
     The TCKind constant whose value field is initialized with TCKind._tk_union.
final public static  TCKindtk_ushort
     The TCKind constant whose value field is initialized with TCKind._tk_ushort.
final public static  TCKindtk_value
     The TCKind constant whose value field is initialized with TCKind._tk_value.
final public static  TCKindtk_value_box
     The TCKind constant whose value field is initialized with TCKind._tk_value_box.
final public static  TCKindtk_void
     The TCKind constant whose value field is initialized with TCKind._tk_void.
final public static  TCKindtk_wchar
     The TCKind constant whose value field is initialized with TCKind._tk_wchar.
final public static  TCKindtk_wstring
     The TCKind constant whose value field is initialized with TCKind._tk_wstring.

Constructor Summary
protected  TCKind(int _value)
     Creates a new TCKind instance initialized with the given int. TCKind.from_int(int)
Parameters:
  _value - the int to convert.

Method Summary
public static  TCKindfrom_int(int i)
     Converts the given int to the corresponding TCKind instance.
Parameters:
  i - the int to convert.
public  intvalue()
     Retrieves the value of this TCKind instance.

Field Detail
_tk_Principal
final public static int _tk_Principal(Code)
The int constant for the IDL data type Principal.



_tk_TypeCode
final public static int _tk_TypeCode(Code)
The int constant for the IDL data type TypeCode.



_tk_abstract_interface
final public static int _tk_abstract_interface(Code)
The int constant for the IDL data type abstract interface.



_tk_alias
final public static int _tk_alias(Code)
The int constant for the IDL data type alias.



_tk_any
final public static int _tk_any(Code)
The int constant for the IDL data type any.



_tk_array
final public static int _tk_array(Code)
The int constant for the IDL data type array.



_tk_boolean
final public static int _tk_boolean(Code)
The int constant for the IDL data type boolean.



_tk_char
final public static int _tk_char(Code)
The int constant for the IDL data type char.



_tk_double
final public static int _tk_double(Code)
The int constant for the IDL data type double.



_tk_enum
final public static int _tk_enum(Code)
The int constant for the IDL data type enum.



_tk_except
final public static int _tk_except(Code)
The int constant for the IDL data type except.



_tk_fixed
final public static int _tk_fixed(Code)
The int constant for the IDL data type fixed.



_tk_float
final public static int _tk_float(Code)
The int constant for the IDL data type float.



_tk_long
final public static int _tk_long(Code)
The int constant for the IDL data type long.



_tk_longdouble
final public static int _tk_longdouble(Code)
The int constant for the IDL data type longdouble.



_tk_longlong
final public static int _tk_longlong(Code)
The int constant for the IDL data type longlong.



_tk_native
final public static int _tk_native(Code)
The int constant for the IDL data type native.



_tk_null
final public static int _tk_null(Code)
The int constant for a null IDL data type.



_tk_objref
final public static int _tk_objref(Code)
The int constant for the IDL data type objref.



_tk_octet
final public static int _tk_octet(Code)
The int constant for the IDL data type octet.



_tk_sequence
final public static int _tk_sequence(Code)
The int constant for the IDL data type sequence.



_tk_short
final public static int _tk_short(Code)
The int constant for the IDL data type short.



_tk_string
final public static int _tk_string(Code)
The int constant for the IDL data type string.



_tk_struct
final public static int _tk_struct(Code)
The int constant for the IDL data type struct.



_tk_ulong
final public static int _tk_ulong(Code)
The int constant for the IDL data type ulong.



_tk_ulonglong
final public static int _tk_ulonglong(Code)
The int constant for the IDL data type ulonglong.



_tk_union
final public static int _tk_union(Code)
The int constant for the IDL data type union.



_tk_ushort
final public static int _tk_ushort(Code)
The int constant for the IDL data type ushort.



_tk_value
final public static int _tk_value(Code)
The int constant for the IDL data type value.



_tk_value_box
final public static int _tk_value_box(Code)
The int constant for the IDL data type value_box.



_tk_void
final public static int _tk_void(Code)
The int constant for the IDL data type void.



_tk_wchar
final public static int _tk_wchar(Code)
The int constant for the IDL data type wchar.



_tk_wstring
final public static int _tk_wstring(Code)
The int constant for the IDL data type wstring.



tk_Principal
final public static TCKind tk_Principal(Code)
The TCKind constant whose value field is initialized with TCKind._tk_Principal.



tk_TypeCode
final public static TCKind tk_TypeCode(Code)
The TCKind constant whose value field is initialized with TCKind._tk_TypeCode.



tk_abstract_interface
final public static TCKind tk_abstract_interface(Code)
The TCKind constant whose value field is initialized with TCKind._tk_abstract_interface.



tk_alias
final public static TCKind tk_alias(Code)
The TCKind constant whose value field is initialized with TCKind._tk_alias.



tk_any
final public static TCKind tk_any(Code)
The TCKind constant whose value field is initialized with TCKind._tk_any.



tk_array
final public static TCKind tk_array(Code)
The TCKind constant whose value field is initialized with TCKind._tk_array.



tk_boolean
final public static TCKind tk_boolean(Code)
The TCKind constant whose value field is initialized with TCKind._tk_boolean.



tk_char
final public static TCKind tk_char(Code)
The TCKind constant whose value field is initialized with TCKind._tk_char.



tk_double
final public static TCKind tk_double(Code)
The TCKind constant whose value field is initialized with TCKind._tk_double.



tk_enum
final public static TCKind tk_enum(Code)
The TCKind constant whose value field is initialized with TCKind._tk_enum.



tk_except
final public static TCKind tk_except(Code)
The TCKind constant whose value field is initialized with TCKind._tk_except.



tk_fixed
final public static TCKind tk_fixed(Code)
The TCKind constant whose value field is initialized with TCKind._tk_fixed.



tk_float
final public static TCKind tk_float(Code)
The TCKind constant whose value field is initialized with TCKind._tk_float.



tk_long
final public static TCKind tk_long(Code)
The TCKind constant whose value field is initialized with TCKind._tk_long.



tk_longdouble
final public static TCKind tk_longdouble(Code)
The TCKind constant whose value field is initialized with TCKind._tk_longdouble.



tk_longlong
final public static TCKind tk_longlong(Code)
The TCKind constant whose value field is initialized with TCKind._tk_longlong.



tk_native
final public static TCKind tk_native(Code)
The TCKind constant whose value field is initialized with TCKind._tk_native.



tk_null
final public static TCKind tk_null(Code)
The TCKind constant whose value field is initialized with TCKind._tk_null.



tk_objref
final public static TCKind tk_objref(Code)
The TCKind constant whose value field is initialized with TCKind._tk_objref.



tk_octet
final public static TCKind tk_octet(Code)
The TCKind constant whose value field is initialized with TCKind._tk_octet.



tk_sequence
final public static TCKind tk_sequence(Code)
The TCKind constant whose value field is initialized with TCKind._tk_sequence.



tk_short
final public static TCKind tk_short(Code)
The TCKind constant whose value field is initialized with TCKind._tk_short.



tk_string
final public static TCKind tk_string(Code)
The TCKind constant whose value field is initialized with TCKind._tk_string.



tk_struct
final public static TCKind tk_struct(Code)
The TCKind constant whose value field is initialized with TCKind._tk_struct.



tk_ulong
final public static TCKind tk_ulong(Code)
The TCKind constant whose value field is initialized with TCKind._tk_ulong.



tk_ulonglong
final public static TCKind tk_ulonglong(Code)
The TCKind constant whose value field is initialized with TCKind._tk_ulonglong.



tk_union
final public static TCKind tk_union(Code)
The TCKind constant whose value field is initialized with TCKind._tk_union.



tk_ushort
final public static TCKind tk_ushort(Code)
The TCKind constant whose value field is initialized with TCKind._tk_ushort.



tk_value
final public static TCKind tk_value(Code)
The TCKind constant whose value field is initialized with TCKind._tk_value.



tk_value_box
final public static TCKind tk_value_box(Code)
The TCKind constant whose value field is initialized with TCKind._tk_value_box.



tk_void
final public static TCKind tk_void(Code)
The TCKind constant whose value field is initialized with TCKind._tk_void.



tk_wchar
final public static TCKind tk_wchar(Code)
The TCKind constant whose value field is initialized with TCKind._tk_wchar.



tk_wstring
final public static TCKind tk_wstring(Code)
The TCKind constant whose value field is initialized with TCKind._tk_wstring.




Constructor Detail
TCKind
protected TCKind(int _value)(Code)
Creates a new TCKind instance initialized with the given int. TCKind.from_int(int)
Parameters:
  _value - the int to convert. It must be one ofthe int constants in the classTCKind. a new TCKind instance whose valuefield matches the given int




Method Detail
from_int
public static TCKind from_int(int i)(Code)
Converts the given int to the corresponding TCKind instance.
Parameters:
  i - the int to convert. It must be one ofthe int constants in the classTCKind. the TCKind instance whose valuefield matches the given int
exception:
  BAD_PARAM - if the given int does notmatch the _value field ofany TCKind instance



value
public int value()(Code)
Retrieves the value of this TCKind instance. the int that represents the kind ofIDL data type for this TCKind instance



Methods inherited from org.omg.CORBA.Object
Request _create_request(Context ctx, String operation, NVList arg_list, NamedValue result)(Code)(Java Doc)
Request _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist)(Code)(Java Doc)
org.omg.CORBA.Object _duplicate()(Code)(Java Doc)
DomainManager[] _get_domain_managers()(Code)(Java Doc)
org.omg.CORBA.Object _get_interface_def()(Code)(Java Doc)
Policy _get_policy(int policy_type)(Code)(Java Doc)
int _hash(int maximum)(Code)(Java Doc)
boolean _is_a(String repositoryIdentifier)(Code)(Java Doc)
boolean _is_equivalent(org.omg.CORBA.Object other)(Code)(Java Doc)
boolean _non_existent()(Code)(Java Doc)
void _release()(Code)(Java Doc)
Request _request(String operation)(Code)(Java Doc)
org.omg.CORBA.Object _set_policy_override(Policy[] policies, SetOverrideType set_add)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.