org.jpox.store.mapping

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 » JPOX » org.jpox.store.mapping 
org.jpox.store.mapping
Package providing mappings for all supported Java types in JPOX. A JavaTypeMapping provides a mapping from the Java type to the associated RDBMS type(s). At the class side we have a field, and at the datastore side we have datastore column(s).
Java Source File NameTypeComment
AbstractContainerMapping.javaClass Mapping for a field that represents a container of objects, such as a List, a Set, a Collection, a Map, or an array.
AbstractMappingManager.javaClass Base implementation of a MappingManager.
AppIDObjectIdFieldConsumer.javaClass Parameter setter class to deal with application identity.
Arc2dDoubleMapping.javaClass Mapping for java.awt.geom.Arc2D.Double, maps the x, y, width, height, start and extent values to double-precision datastore fields.
Arc2dFloatMapping.javaClass Mapping for java.awt.geom.Arc2D.Float, maps the x, y, width, height, start and extent values to float-precision datastore fields.
ArrayMapping.javaClass Mapping for an array.
BigDecimalMapping.javaClass Mapping for BigDecimal type.
BigIntegerMapping.javaClass Mapping for BigInteger type.
BitSetMapping.javaClass Mapping for an array of bytes.
BooleanMapping.javaClass Mapping of Java Boolean object.
BufferedImageMapping.javaClass
ByteMapping.javaClass Mapping for Byte type.
CharacterMapping.javaClass Mapping for Character type. In RDBMS, this mapping can be stored in INT or CHAR columns. The use of INT columns facilitates greater than, less than operations within queries etc.
CollectionMapping.javaClass Mapping for Collection (Set/List) types.
ColorMapping.javaClass Mapping for java.awt.Color mapping the red, green, blue and alpha values to datastore fields.
CorrespondentColumnsMapper.javaClass Class to make correspondence between columns in one side of an association to the mapping at the other side.
CubicCurve2dDoubleMapping.javaClass Mapping for java.awt.geom.CubicCurve2D.Double, maps the x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2 and y2 values to double-precision datastore fields.
CubicCurve2dFloatMapping.javaClass Mapping for java.awt.geom.CubicCurve2D.Float, maps the x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2 and y2 values to float-precision datastore fields.
CurrencyMapping.javaClass SCO Mapping for Currency type.
DatastoreMapping.javaInterface Representation of the mapping of a datastore type.
DatastoreMappingFactory.javaClass
DateMapping.javaClass SCO Mapping for java.util.Date type.
DiscriminatorMapping.javaClass Mapping for a discriminator column in a table used in inheritance. The discriminator column is, by default, a String type, typically VARCHAR. It can however be "long" based if the user specifies INTEGER, BIGINT, or NUMERIC as the jdbc-type.
DoubleMapping.javaClass Mapping for Double type.
Ellipse2dDoubleMapping.javaClass Mapping for java.awt.geom.Ellipse2D.Double, maps the x, y, width and height values to double-precision datastore fields.
Ellipse2dFloatMapping.javaClass Mapping for java.awt.geom.Ellipse2D.Float, maps the x, y, width and height values to float-precision datastore fields.
EmbeddedElementPCMapping.javaClass Mapping for a PersistenceCapable object stored in an embedded collection within a PersistenceCapable object.
EmbeddedKeyPCMapping.javaClass Mapping for a PC key object stored in an embedded map within a PC object.
EmbeddedMapping.javaClass Mapping for an embedded PC object.
EmbeddedPCMapping.javaClass Mapping for a PC object embedded within another PC object (1-1 relation).
EmbeddedValuePCMapping.javaClass Mapping for a PC key object stored in an embedded map within a PC object.
FloatMapping.javaClass Mapping for Float Java type.
GregorianCalendarMapping.javaClass Maps the class fields of a GregorianCalendar to datastore fields.
IndexMapping.javaClass Mapping for Index Columns. This class is for internal use only.
IntegerMapping.javaClass Mapping for Integer type.
InterfaceMapping.javaClass Mapping for Interface fields.
JavaTypeMapping.javaClass Representation of the mapping of a Java type. The java type maps to one or more datastore mappings.
Line2dDoubleMapping.javaClass Mapping for java.awt.geom.Line2D.Double, maps the x1, y1, x2 and y2 values to double-precision datastore fields.
Line2dFloatMapping.javaClass Mapping for java.awt.geom.Line2D.Float, maps the x1, y1, x2 and y2 values to float-precision datastore fields.
LocaleMapping.javaClass Mapping for Locale type. Locale should be stored in colums from 2 to 20 characters.
LongMapping.javaClass Mapping for Long type.
MapMapping.javaClass SCO Mapping for Map types.
MappingCallbacks.javaInterface Interface defining a series of callbacks that are called when this mapping goes through certain lifecycle events.
MappingConsumer.javaInterface Consumer of mappings.
MappingFactory.javaClass Factory class for creating Mapping instances.
MappingManager.javaInterface Representation of a MappingManager, mapping a java mapping type to a datastore mapping type.
Mappings.javaClass Helper class for doing many tasks with mapping.
MultiMapping.javaClass Mapping to represent multiple mappings.
NullMapping.javaClass Simple mapping for a null literal.
NumberMapping.javaClass Mapping for Number type.
ObjectAsIntegerMapping.javaClass Abstract mapping for a java type that will be stored as a Integer type.
ObjectAsLongMapping.javaClass Abstract SCO mapping for a java type that will be stored as a Long type.
ObjectAsStringMapping.javaClass Abstract SCO mapping for a java type that will be stored as a String type.
ObjectIdClassMapping.javaClass Maps to identity objects of PersistenceCapable values.
ObjectMapping.javaClass Mapping for Object fields.
OIDMapping.javaClass Mapping for OID type.
PersistenceCapableMapping.javaClass Maps a java field to a PersistenceCapable class.
Point2dDoubleMapping.javaClass Mapping for java.awt.geom.Point2D.Double, maps the x and y values to double-precision datastore fields.
Point2dFloatMapping.javaClass Mapping for java.awt.geom.Point2D.Float, maps the x and y values to float-precision datastore fields.
PointMapping.javaClass Mapping for java.awt.Point to its datastore representation.
PolygonMapping.javaClass Mapping for java.awt.Polygon, maps the points to int-precision datastore fields.
QuadCurve2dDoubleMapping.javaClass Mapping for java.awt.geom.QuadCurve2D.Double, maps the x1, y1, ctrlx, ctrly, x2 and y2 values to double-precision datastore fields.
QuadCurve2dFloatMapping.javaClass Mapping for java.awt.geom.QuadCurve2D.Float, maps the x1, y1, ctrlx, ctrly, x2 and y2 values to float-precision datastore fields.
Rectangle2dDoubleMapping.javaClass Mapping for java.awt.geom.Rectangle2D.Double, maps the x, y, width and height values to double-precision datastore fields.
Rectangle2dFloatMapping.javaClass Mapping for java.awt.geom.Rectangle2D.Float, maps the x, y, width and height values to float-precision datastore fields.
RectangleMapping.javaClass Mapping for java.awt.Rectangle, maps the x, y, width and height values to int-precision datastore fields.
ReferenceMapping.javaClass Mapping for a reference type. This can be used for things like interfaces, or Object which are simply a reference to some specific (PersistenceCapable) class.
RoundRectangle2dDoubleMapping.javaClass Mapping for java.awt.geom.RoundRectangle2D.Double, maps the x, y, width, height, arc-width and arc-height values to double-precision datastore fields.
RoundRectangle2dFloatMapping.javaClass Mapping for java.awt.geom.RoundRectangle2D.Float, maps the x, y, width, height, arc-width and arc-height values to float-precision datastore fields.
SerialisedElementPCMapping.javaClass Mapping for a serialised PersistenceCapable object being the element of a Collection.
SerialisedKeyPCMapping.javaClass Mapping for a serialised PersistenceCapable object being the key of a Map.
SerialisedMapping.javaClass Maps a field as serialised.
SerialisedPCMapping.javaClass Mapping for a serialised PersistenceCapable object.
SerialisedReferenceMapping.javaClass Mapping for a serialised reference (Interface/Object) field.
SerialisedValuePCMapping.javaClass Mapping for a serialised PersistenceCapable object being the value of a Map.
ShortMapping.javaClass Mapping for the Short type.
SimpleDatastoreRepresentation.javaInterface TODO rename it if necessary to provide the best meaning understanding. This represents something in the datastore that holds single elements of data or embedded elements. For example, Strings, Locale, Integer, PersistenceCapable, Interface, embedded Collections, embedded Lists, Objects and others, but not non embedded Collections, List, etc. In RDBMS, this represents a column in one table or a column in a table joining to this.
SingleFieldMapping.javaClass Simple mapping for a java field mapping to a single datastore field.
SingleFieldMultiMapping.javaClass Mapping to represent a field that is mapped to multiple datastore columns.
SqlDateCharMapping.javaClass SCO Mapping for SQLDate type as char.
SqlDateMapping.javaClass SCO Mapping for an SQLDate type. Maps between a java.sql.Date object and an SQL "DATE" type in the datatsore.
SqlTimeMapping.javaClass SCO Mapping for an SQLTime type.
SqlTimestampCharMapping.javaClass Mapping for Java java.sql.Timestamp char type.
SqlTimestampMapping.javaClass SCO Mapping for an SQLTimestamp type.
StringBufferMapping.javaClass Mapping for a StringBuffer type.
StringMapping.javaClass Mapping for a String type.
SubclassPCMapping.javaClass Mapping for a field that stores a PC object that uses "subclass-table" inheritance and where this is mapped in the datastore as a separate FK for each subclass.
TimeZoneMapping.javaClass SCO Mapping for java TimeZone type.
URIMapping.javaClass SCO Mapping for java.net.URI type.
URLMapping.javaClass SCO Mapping for java.net.URL type.
UUIDMapping.javaClass Mapping for java.util.UUID type.
VersionMapping.javaClass Mapping class for mapping version state/timestamp columns in the database. This class is for internal use only.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.