org.apache.openjpa.jdbc.meta.strats

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 ORM » openjpa » org.apache.openjpa.jdbc.meta.strats 
org.apache.openjpa.jdbc.meta.strats

OpenJPA-JDBC ORM Strategies

Library of mapping strategies.

Java Source File NameTypeComment
AbstractClassStrategy.javaClass No-op strategy for easy extension.
AbstractDiscriminatorStrategy.javaClass No-op strategy for easy extension.
AbstractFieldStrategy.javaClass No-op strategy for easy extension.
AbstractLobTest.javaClass This abstract class defines all the tests for LOBS.
AbstractStrategy.javaClass No-op strategy for easy extension.
AbstractValueHandler.javaClass No-op implementations of ValueHandler interface methods.
AbstractVersionStrategy.javaClass No-op strategy for easy extension.
BlobValueHandler.javaClass Handler for blob values.
ByteArrayValueHandler.javaClass Handler for byte array values.
CharArrayStreamValueHandler.javaClass Handler for char array values.
CharArrayValueHandler.javaClass Handler for char array values.
ClassNameDiscriminatorStrategy.javaClass Stores the class name along with each database object record.
ClobValueHandler.javaClass Handler for clob values.
ColumnVersionStrategy.javaClass Uses a single column and corresponding version object.
ContainerFieldStrategy.javaClass An abstract container mapping that handles traversing the join to examine the size of the relation.
ElementEmbedValueHandler.javaClass

Handler for embedded objects as elements of a collection or map.

EmbeddedClassStrategy.javaClass Class mapping for embedded objects.
EmbedFieldStrategy.javaClass Mapping for an embedded persistent object.
EmbedValueHandler.javaClass Base class for embedded value handlers.
EnumValueHandler.javaClass Value handler for JDK1.5 enum field types.
FlatClassStrategy.javaClass Mapping for classes mapped to their superclass table.
FullClassStrategy.javaClass Mapping for when the class maps all fields to its own table.
HandlerCollectionTableFieldStrategy.javaClass
HandlerFieldStrategy.javaClass Mapping for a single-valued field that delegates to a ValueHandler .
HandlerHandlerMapTableFieldStrategy.javaClass Mapping for a map of keys and values both controlled by ValueHandler s.
HandlerRelationMapTableFieldStrategy.javaClass
HandlerStrategies.javaClass Utility methods for strategies using value handlers.
IdentityJoinable.javaClassJoinable for the datastore identity column.
ImmutableValueHandler.javaClass Handler for simple type and string values.
InputStreamLobEntity.javaClass An entity with an InputStream.
InputStreamLobTest.javaClass Defines all the abstract methods from AbstractLobTest to tests the the LOB support with an InputStream.
InputStreamWrapper.javaClass This class is used to kwon where the content of the InputStream is load.
InValueDiscriminatorStrategy.javaClass Base discriminator strategy that determines the class of database records using a column holding a value mapped to a class, and limits SELECTs using an IN (...) statement.
LobEntity.javaInterface
LobFieldStrategy.javaClass Direct mapping from a stream value to a column.
LRSCollectionFieldStrategy.javaInterface Interface implemented by collection strategies so that they can support large result set collections.
LRSMapFieldStrategy.javaInterface Interface implemented by map strategies so that they can support large result set maps.
LRSProxyCollection.javaClass Large result set collection.
LRSProxyMap.javaClass Large result set map.
MapTableFieldStrategy.javaClass Base class for map mappings.
MaxEmbeddedBlobFieldStrategy.javaClass Mapping for serialized fields on a dictionary that has a maximum embedded BLOB size.
MaxEmbeddedByteArrayFieldStrategy.javaClass Mapping for byte array fields on a dictionary that has a maximum embedded BLOB size.
MaxEmbeddedCharArrayFieldStrategy.javaClass Mapping for CLOB character array on a dictionary that has a maximum embedded CLOB size.
MaxEmbeddedClobFieldStrategy.javaClass Mapping for CLOB string on a dictionary that has a maximum embedded CLOB size.
MaxEmbeddedLobFieldStrategy.javaClass Base class for LOBs on databases that limit the max embedded LOB size.
NanoPrecisionTimestampVersionStrategy.javaClass Uses a timestamp for optimistic versioning with nanosecond precision.
NoneClassStrategy.javaClass Strategy for classes that aren't mapped.
NoneDiscriminatorStrategy.javaClass No-op Discriminator strategy.
NoneFieldStrategy.javaClass An unmapped field.
NoneVersionStrategy.javaClass No-op version strategy.
NumberVersionStrategy.javaClass Uses a version number for optimistic versioning.
ObjectIdClassStrategy.javaClass Class mapping for embedded object id fields.
ObjectIdValueHandler.javaClass Handler for embedded object id fields.
PrimitiveFieldStrategy.javaClass Direct mapping from a primitive value to a column.
PrimitiveWrapperArrays.javaClass Primitive wrapper array helper methods.
ReaderLobEntity.javaClass An entity with a Reader field.
ReaderLobTest.javaClass Defines all the abstract methods from AbstractLobTest to tests the the LOB support with a Reader.
ReaderWrapper.javaClass This class is used to kwon where the content of the Reader is load.
RelationCollectionInverseKeyFieldStrategy.javaClass Maps a relation to a collection of other objects using an inverse foreign key in the related object table.
RelationCollectionTableFieldStrategy.javaClass Maps a collection of related objects through an association table.
RelationFieldStrategy.javaClass Mapping for a single-valued relation to another entity.
RelationHandlerMapTableFieldStrategy.javaClass
RelationMapInverseKeyFieldStrategy.javaClass Uses an inverse foreign key in the table of the map value to determine map values.
RelationMapTableFieldStrategy.javaClass Uses an association table to hold map values.
RelationRelationMapTableFieldStrategy.javaClass
RelationStrategies.javaClass Helper methods for relation mappings.
RelationToManyInverseKeyFieldStrategy.javaClass Maps a relation to a set of other objects using an inverse foreign key in the related object table.
RelationToManyTableFieldStrategy.javaClass Maps a set of related objects through an association table.
StateComparisonVersionStrategy.javaClass Uses a state image to determine whether concurrency violations take place.
StoreCollectionFieldStrategy.javaClass Base class for strategies that are stored as a collection, even if their field value is something else.
StringFieldStrategy.javaClass Direct mapping from a string value to a column.
SubclassJoinDiscriminatorStrategy.javaClass Discriminator strategy that outer joins to all possible subclass tables to determine the class of an instance.
SuperclassDiscriminatorStrategy.javaClass Discriminator strategy that delegates to superclass discriminator.
SuperclassVersionStrategy.javaClass Version strategy that delegates to the suerpclass version.
TimestampVersionStrategy.javaClass Uses a timestamp for optimistic versioning.
UntypedPCValueHandler.javaClass Handler for unknown persistence-capable object fields that stores stringified oids.
ValueMapDiscriminatorStrategy.javaClass Maps metadata-given values to classes.
VerticalClassStrategy.javaClass Mapping for subclasses that join to their superclass table.
XMLValueHandler.javaClass Base class for xml value handlers.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.