Java Doc for SchemaNodeType.java in  » Database-Client » iSQL-Viewer » org » isqlviewer » model » 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 » Database Client » iSQL Viewer » org.isqlviewer.model 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.isqlviewer.model.SchemaNodeType

SchemaNodeType
public enum SchemaNodeType (Code)
Types of nodes that can be found within the JDBC Schema Tree.

Actually expirementing a new code style/pattern with enumerations where the type of node can actually define a 'preferredIcon' so that the renderer is not required to be coded with icon information for rendering each node.
author:
   Mark A. Kobold <mkobold at isqlviewer dot com>
version:
   1.0



Field Summary
 Enum ConstantCOLUMN
     Node that represents a column in a table, the parent node type is acutually a COLUMN_SET.
 Enum ConstantCOLUMN_PRIVILIGES
     Node that indicates that the current table has column specific priviliges defined.
 Enum ConstantCOLUMN_SET
     This node type is a place holder for representing the parent column node for the actual column type.
 Enum ConstantDATA_TYPE
     Node the represents a data type defined by the current database.
 Enum ConstantDATA_TYPE_SET
     This node type is a place holder as the parent node for data types that are allowed by the current database.
 Enum ConstantEXPORTED_KEYS
     Node that shows that other tables that rely on the primary keys defined within the table.
 Enum ConstantIMPORTED_KEYS
     Node that shows foriegn keys from other tables that part of the table's definition.
 Enum ConstantINDEX
     Index information for a given table, this node is usually a child of a TABLE node.
 Enum ConstantNON_CACHED
     Non cached nodes are nodes that are likely to cause a lot of JDBC traffic nodes of these types serve to mark the parent node to load the information at the user's request.
 Enum ConstantPRIMARY_KEYS
     Node that shows that the current table has primary keys defined.
 Enum ConstantPROCEDURE
     Node that represents a stored procedure definied in the current catalog and or schema.
 Enum ConstantPROCEDURE_SET
     This node type is a place holder as the parent node for stored procedure for the actual procedure type.
 Enum ConstantROOT
     Root node of the JDBC Schema tree this type here for completness and has no real value.
 Enum ConstantSUPER_TABLES
     If tables is defined in a hierarchial fashion then this node shows the parent tables for the current one.
 Enum ConstantTABLE
     Table node that is a a child of TABLE_TYPE, and represents a database table or view usually.
 Enum ConstantTABLE_PRIVILIGES
     Node for indicating that the table has defined security constraints on the table.
 Enum ConstantTABLE_TYPE
     Table Type node that is usually of the form INDEX, TABLE, VIEW, SYNONYM, and etc.
 Enum ConstantUDT
     A node that represents a user data type that is supported by the current schema/catalog.
 Enum ConstantUDT_SET
     This node type is a place holder as the parent node for user data types that are defined in the current catalog/schema.
 Enum ConstantUDT_SET_DISTINCT
     This node type is a place holder as the parent node for user data types are DISTINCT types.
 Enum ConstantUDT_SET_JAVA_OBJECT
     This node type is a place holder as the parent node for user data types are JAVA_OBJECT types.
 Enum ConstantUDT_SET_STRUCT
     This node type is a place holder as the parent node for user data types are STRUCT types.
 Enum ConstantVERSION_COLUMNS
     Node to indicate that this table defines columns that are automatically updated when any row is updated.

Constructor Summary
 SchemaNodeType()
    
 SchemaNodeType(String preferredIcon)
    

Method Summary
public  StringgetPreferredIcon()
    

Field Detail
COLUMN
Enum Constant COLUMN(Code)
Node that represents a column in a table, the parent node type is acutually a COLUMN_SET.



COLUMN_PRIVILIGES
Enum Constant COLUMN_PRIVILIGES(Code)
Node that indicates that the current table has column specific priviliges defined.



COLUMN_SET
Enum Constant COLUMN_SET(Code)
This node type is a place holder for representing the parent column node for the actual column type.

The children for this node are loaded on demand by the user.




DATA_TYPE
Enum Constant DATA_TYPE(Code)
Node the represents a data type defined by the current database.



DATA_TYPE_SET
Enum Constant DATA_TYPE_SET(Code)
This node type is a place holder as the parent node for data types that are allowed by the current database.

The childeren for this node are loaded on demand by the user.




EXPORTED_KEYS
Enum Constant EXPORTED_KEYS(Code)
Node that shows that other tables that rely on the primary keys defined within the table.



IMPORTED_KEYS
Enum Constant IMPORTED_KEYS(Code)
Node that shows foriegn keys from other tables that part of the table's definition.



INDEX
Enum Constant INDEX(Code)
Index information for a given table, this node is usually a child of a TABLE node.



NON_CACHED
Enum Constant NON_CACHED(Code)
Non cached nodes are nodes that are likely to cause a lot of JDBC traffic nodes of these types serve to mark the parent node to load the information at the user's request.



PRIMARY_KEYS
Enum Constant PRIMARY_KEYS(Code)
Node that shows that the current table has primary keys defined.



PROCEDURE
Enum Constant PROCEDURE(Code)
Node that represents a stored procedure definied in the current catalog and or schema.

The children for this node are loaded on demand by the user.




PROCEDURE_SET
Enum Constant PROCEDURE_SET(Code)
This node type is a place holder as the parent node for stored procedure for the actual procedure type.



ROOT
Enum Constant ROOT(Code)
Root node of the JDBC Schema tree this type here for completness and has no real value.



SUPER_TABLES
Enum Constant SUPER_TABLES(Code)
If tables is defined in a hierarchial fashion then this node shows the parent tables for the current one.



TABLE
Enum Constant TABLE(Code)
Table node that is a a child of TABLE_TYPE, and represents a database table or view usually.



TABLE_PRIVILIGES
Enum Constant TABLE_PRIVILIGES(Code)
Node for indicating that the table has defined security constraints on the table.



TABLE_TYPE
Enum Constant TABLE_TYPE(Code)
Table Type node that is usually of the form INDEX, TABLE, VIEW, SYNONYM, and etc.



UDT
Enum Constant UDT(Code)
A node that represents a user data type that is supported by the current schema/catalog.



UDT_SET
Enum Constant UDT_SET(Code)
This node type is a place holder as the parent node for user data types that are defined in the current catalog/schema.




UDT_SET_DISTINCT
Enum Constant UDT_SET_DISTINCT(Code)
This node type is a place holder as the parent node for user data types are DISTINCT types.




UDT_SET_JAVA_OBJECT
Enum Constant UDT_SET_JAVA_OBJECT(Code)
This node type is a place holder as the parent node for user data types are JAVA_OBJECT types.




UDT_SET_STRUCT
Enum Constant UDT_SET_STRUCT(Code)
This node type is a place holder as the parent node for user data types are STRUCT types.




VERSION_COLUMNS
Enum Constant VERSION_COLUMNS(Code)
Node to indicate that this table defines columns that are automatically updated when any row is updated.




Constructor Detail
SchemaNodeType
SchemaNodeType()(Code)



SchemaNodeType
SchemaNodeType(String preferredIcon)(Code)




Method Detail
getPreferredIcon
public String getPreferredIcon()(Code)



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