Java Doc for Dependable.java in  » Database-DBMS » db-derby-10.2 » org » apache » derby » catalog » 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 DBMS » db derby 10.2 » org.apache.derby.catalog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.derby.catalog.Dependable

Dependable
public interface Dependable (Code)
A Dependable is an in-memory representation of an object managed by the Dependency System. There are two kinds of Dependables: Providers and Dependents. Dependents depend on Providers and are responsible for executing compensating logic when their Providers change.

The fields represent the known Dependables.

Persistent dependencies (those between database objects) are stored in SYS.SYSDEPENDS.
See Also:   org.apache.derby.catalog.DependableFinder



Field Summary
final public static  StringALIAS
    
final public static  StringCOLUMNS_IN_TABLE
    
final public static  StringCOLUMNS_PERMISSION
    
final public static  StringCONGLOMERATE
    
final public static  StringCONSTRAINT
    
final public static  StringDEFAULT
    
final public static  StringFILE
    
final public static  StringHEAP
    
final public static  StringINDEX
    
final public static  StringPREPARED_STATEMENT
    
final public static  StringROUTINE_PERMISSION
    
final public static  StringSCHEMA
    
final public static  StringSTORED_PREPARED_STATEMENT
    
final public static  StringTABLE
    
final public static  StringTABLE_PERMISSION
    
final public static  StringTRIGGER
    
final public static  StringVIEW
    


Method Summary
public  StringgetClassType()
     Get the unique class id for the Dependable. Every Dependable belongs to a class of Dependables.
public  DependableFindergetDependableFinder()
     Get an object which can be written to disk and which, when read from disk, will find or reconstruct this in-memory Dependable.
public  UUIDgetObjectID()
     Get the UUID of this Dependable OBJECT.
public  StringgetObjectName()
     Get the name of this Dependable OBJECT.
public  booleanisPersistent()
     Return whether or not this Dependable is persistent.

Field Detail
ALIAS
final public static String ALIAS(Code)



COLUMNS_IN_TABLE
final public static String COLUMNS_IN_TABLE(Code)



COLUMNS_PERMISSION
final public static String COLUMNS_PERMISSION(Code)



CONGLOMERATE
final public static String CONGLOMERATE(Code)



CONSTRAINT
final public static String CONSTRAINT(Code)



DEFAULT
final public static String DEFAULT(Code)



FILE
final public static String FILE(Code)



HEAP
final public static String HEAP(Code)



INDEX
final public static String INDEX(Code)



PREPARED_STATEMENT
final public static String PREPARED_STATEMENT(Code)



ROUTINE_PERMISSION
final public static String ROUTINE_PERMISSION(Code)



SCHEMA
final public static String SCHEMA(Code)



STORED_PREPARED_STATEMENT
final public static String STORED_PREPARED_STATEMENT(Code)



TABLE
final public static String TABLE(Code)



TABLE_PERMISSION
final public static String TABLE_PERMISSION(Code)



TRIGGER
final public static String TRIGGER(Code)



VIEW
final public static String VIEW(Code)





Method Detail
getClassType
public String getClassType()(Code)
Get the unique class id for the Dependable. Every Dependable belongs to a class of Dependables. type of this Dependable.



getDependableFinder
public DependableFinder getDependableFinder()(Code)
Get an object which can be written to disk and which, when read from disk, will find or reconstruct this in-memory Dependable. A Finder object that can be written to disk if this is aPersistent Dependable.Null if this is not a persistent dependable.



getObjectID
public UUID getObjectID()(Code)
Get the UUID of this Dependable OBJECT. UUID of this OBJECT.



getObjectName
public String getObjectName()(Code)
Get the name of this Dependable OBJECT. This is useful for diagnostic messages. Name of Dependable OBJECT.



isPersistent
public boolean isPersistent()(Code)
Return whether or not this Dependable is persistent. Persistent dependencies are stored in SYS.SYSDEPENDS. true if this Dependable is persistent.



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