com.sleepycat.persist.impl

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 » JMX » je » com.sleepycat.persist.impl 
com.sleepycat.persist.impl
Java Source File NameTypeComment
AbstractInput.javaClass Base class for EntityInput implementations.
Accessor.javaInterface Field binding operations implemented via reflection (ReflectionAccessor) or bytecode enhancement (EnhancedAccessor).

Normally we read the set of all secondary key fields first and then the set of all non-key fields, reading each set in order of field name.

Catalog.javaInterface Catalog operation interface used by format classes.
CollectionProxy.javaClass Proxy for Collection types.
ComplexFormat.javaClass Format for persistent complex classes that are not composite key classes.
CompositeKeyFormat.javaClass Format for a composite key class. This class is similar to ComplexFormat in that a composite key class and other complex classes have fields, and the Accessor interface is used to access those fields.
ConverterReader.javaClass Reader for invoking a class Converter mutation.
Enhanced.javaInterface Interface implemented by a persistent class via bytecode enhancement.

See Accessor for method documentation.

EnhancedAccessor.javaClass Implements Accessor for a complex persistent class.
EntityInput.javaInterface Used for reading object fields.
EntityOutput.javaInterface Used for writing object fields.

Unlike TupleOutput, Strings should be passed to EntityOutput.writeObject when using this class.

Note that currently there is only one implementation of EntityOutput: RecordOutput.

EnumFormat.javaClass Format for all enum types.
Evolver.javaClass Evolves each old format that is still relevant if necessary, using Mutations to configure deleters, renamers, and converters.
FieldInfo.javaClass A field definition used by ComplexFormat and CompositeKeyFormat.

Note that the equals(), compareTo() and hashCode() methods only use the name field in this class.

Format.javaClass The base class for all object formats.
KeyLocation.javaClass Holder for the input and format of a key.
MapProxy.javaClass Proxy for a Map.
NonPersistentFormat.javaClass Format for a non-persistent class that is only used for declared field types and arrays.
ObjectArrayFormat.javaClass An array of objects having a specified number of dimensions.
PersistCatalog.javaClass The catalog of class formats for a store, along with its associated model and mutations.
PersistComparator.javaClass The btree comparator for persistent key classes.
PersistEntityBinding.javaClass A persistence entity binding for a given entity class.
PersistKeyAssigner.javaClass Assigns primary keys from a Sequence. This class is used directly by PrimaryIndex, not via an interface.
PersistKeyBinding.javaClass A persistence key binding for a given key class.
PersistKeyCreator.javaClass A persistence secondary key creator/nullifier.
PrimitiveArrayFormat.javaClass An array of primitives having one dimension.
ProxiedFormat.javaClass Format for types proxied by a PersistentProxy.
RawAbstractInput.javaClass Base class for EntityInput implementations that type-check RawObject instances and convert them to regular persistent objects, via the Format.convertRawObject method.
RawAccessor.javaClass Implements Accessor for RawObject access.
RawArrayInput.javaClass Extends RawAbstractInput to convert array (ObjectArrayFormat and PrimitiveArrayteKeyFormat) RawObject instances.
RawComplexInput.javaClass Extends RawAbstractInput to convert complex (ComplexFormat and CompositeKeyFormat) RawObject instances.
RawSingleInput.javaClass Extends RawAbstractInput to convert array (ObjectArrayFormat and PrimitiveArrayteKeyFormat) RawObject instances.
Reader.javaInterface Interface to the "read object" methods of the Format class.
ReadOnlyCatalog.javaClass Read-only catalog operations used when initializing new formats.
RecordInput.javaClass Implements EntityInput to read record key-data pairs.
RecordOutput.javaClass Implements EntityOutput to write record key-data pairs.
ReflectionAccessor.javaClass Implements Accessor using reflection.
SimpleCatalog.javaClass A static catalog containing simple types only.
SimpleFormat.javaClass Format for simple types, including primitives.
Store.javaClass Base implementation for EntityStore and RawStore.
StoredModel.javaClass The EntityModel used when a RawStore is opened.
VisitedObjects.javaClass Keeps track of a set of visited objects and their corresponding offset in a byte array.
WidenerInput.javaClass Widens a value returned by another input when any readXxx method is called. Used to cause an Accessor to read a widened value. For non-key fields we support all Java primitive widening: - byte to short, int, long, float, double or BigInteger - short to int, long, float, double or BigInteger - char to int, long, float, double or BigInteger - int to long, float, double or BigInteger - long to float, double or BigInteger - float to double For non-key fields we also support: - Java reference widening - primitive to primitive wrapper - Java primitive widening to corresponding primitive wrappers - Java widening of primitive wrapper to primitive wrapper For secondary keys fields we ONLY support: - primitive to primitive wrapper But for primary keys and composite key fields we ONLY support: - primitive to primitive wrapper - primitive wrapper to primitive These conversions don't require any converter, since the stored format is not changed.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.