Java Doc for TypeKind.java in  » 6.0-JDK-Modules-sun » javac-compiler » javax » lang » model » type » 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 » javac compiler » javax.lang.model.type 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.lang.model.type.TypeKind

TypeKind
public enum TypeKind (Code)
The kind of a type mirror.

Note that it is possible additional type kinds will be added to accommodate new, currently unknown, language structures added to future versions of the Java™ programming language.
author:
   Joseph D. Darcy
author:
   Scott Seligman
author:
   Peter von der Ahé
version:
   1.11 07/05/05
See Also:   TypeMirror
since:
   1.6



Field Summary
 Enum ConstantARRAY
     An array type.
 Enum ConstantBOOLEAN
     The primitive type boolean .
 Enum ConstantBYTE
     The primitive type byte .
 Enum ConstantCHAR
     The primitive type char .
 Enum ConstantDECLARED
     A class or interface type.
 Enum ConstantDOUBLE
     The primitive type double .
 Enum ConstantERROR
     A class or interface type that could not be resolved.
 Enum ConstantEXECUTABLE
     A method, constructor, or initializer.
 Enum ConstantFLOAT
     The primitive type float .
 Enum ConstantINT
     The primitive type int .
 Enum ConstantLONG
     The primitive type long .
 Enum ConstantNONE
     A pseudo-type used where no actual type is appropriate.
 Enum ConstantNULL
     The null type.
 Enum ConstantOTHER
     An implementation-reserved type.
 Enum ConstantPACKAGE
     A pseudo-type corresponding to a package element.
 Enum ConstantSHORT
     The primitive type short .
 Enum ConstantTYPEVAR
     A type variable.
 Enum ConstantVOID
     The pseudo-type corresponding to the keyword void .
 Enum ConstantWILDCARD
     A wildcard type argument.


Method Summary
public  booleanisPrimitive()
     Returns true if this kind corresponds to a primitive type and false otherwise.

Field Detail
ARRAY
Enum Constant ARRAY(Code)
An array type.



BOOLEAN
Enum Constant BOOLEAN(Code)
The primitive type boolean .



BYTE
Enum Constant BYTE(Code)
The primitive type byte .



CHAR
Enum Constant CHAR(Code)
The primitive type char .



DECLARED
Enum Constant DECLARED(Code)
A class or interface type.



DOUBLE
Enum Constant DOUBLE(Code)
The primitive type double .



ERROR
Enum Constant ERROR(Code)
A class or interface type that could not be resolved.



EXECUTABLE
Enum Constant EXECUTABLE(Code)
A method, constructor, or initializer.



FLOAT
Enum Constant FLOAT(Code)
The primitive type float .



INT
Enum Constant INT(Code)
The primitive type int .



LONG
Enum Constant LONG(Code)
The primitive type long .



NONE
Enum Constant NONE(Code)
A pseudo-type used where no actual type is appropriate.
See Also:   NoType



NULL
Enum Constant NULL(Code)
The null type.



OTHER
Enum Constant OTHER(Code)
An implementation-reserved type. This is not the type you are looking for.



PACKAGE
Enum Constant PACKAGE(Code)
A pseudo-type corresponding to a package element.
See Also:   NoType



SHORT
Enum Constant SHORT(Code)
The primitive type short .



TYPEVAR
Enum Constant TYPEVAR(Code)
A type variable.



VOID
Enum Constant VOID(Code)
The pseudo-type corresponding to the keyword void .
See Also:   NoType



WILDCARD
Enum Constant WILDCARD(Code)
A wildcard type argument.





Method Detail
isPrimitive
public boolean isPrimitive()(Code)
Returns true if this kind corresponds to a primitive type and false otherwise. true if this kind corresponds to a primitive type



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