org.h2.index

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 » h2database » org.h2.index 
org.h2.index
Javadoc package documentation Various table index implementations, as well as cursors to navigate in an index.
Java Source File NameTypeComment
BaseIndex.javaClass Most index implementations extend the base index.
BtreeCursor.javaClass The cursor implementation for the b tree index.
BtreeHead.javaClass The head page of a b-tree index.
BtreeIndex.javaClass This is the most common type of index, a b tree index. The index structure is:
  • There is one BtreeHead that points to the root page. The head always stays where it is.
  • There is a number of BtreePage s.
BtreeLeaf.javaClass An outer page of a btree index. Page format:
 L { P(pointers) | D(data) } data.len { data[0].pos [data[0]], ...
BtreeNode.javaClass An inner page of a b-tree index. Page format:
 N children.len children[0..len] data.len { data[0].pos [data[0]], ...
BtreePage.javaClass An abstract b-tree page.
BtreePosition.javaClass Represents a position of a b-tree index.
Cursor.javaInterface A cursor is a helper object to iterate through an index. For indexes are sorted (such as the b tree index), it can iterate to the very end of the index.
FunctionCursor.javaClass A cursor for a function that returns a result set.
FunctionIndex.javaClass An index for a function that returns a result set.
HashCursor.javaClass The cursor for a hash index.
HashIndex.javaClass An index based on an in-memory hash map.
Index.javaInterface An index.
IndexCondition.javaClass A index condition object is made for each condition that can potentially use an index.
IndexType.javaClass
LinearHashBucket.javaClass A index page of a linear hash index.
LinearHashCursor.javaClass The cursor implementation for the linear hash index.
LinearHashEntry.javaClass An index entry of a linear hash index.
LinearHashHead.javaClass The head page of a linear hash index.
LinearHashIndex.javaClass A linear hash index implementation.
LinkedCursor.javaClass The cursor implementation for the linked index.
LinkedIndex.javaClass A linked index is a index for a linked (remote) table.
MetaCursor.javaClass An index for a meta data table.
MetaIndex.javaClass The index implementation for meta data tables.
MultiVersionCursor.javaClass The cursor implementation for the multi-version index.
MultiVersionIndex.javaClass A multi-version index is a combination of a regular index, and a in-memory tree index that contains uncommitted changes.
RangeCursor.javaClass The cursor implementation for the range index.
RangeIndex.javaClass An index for the SYSTEM_RANGE table.
ScanCursor.javaClass The cursor implementation for the scan index.
ScanIndex.javaClass The scan index is not really an 'index' in the strict sense, because it can not be used for direct lookup.
TreeCursor.javaClass The cursor implementation for a tree index.
TreeIndex.javaClass The tree index is an in-memory index based on a binary AVL trees.
TreeNode.javaClass Represents a index node of a tree index.
ViewCursor.javaClass The cursor implementation of a view index.
ViewIndex.javaClass This object represents a virtual index for a query.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.