 126 | , Mapped superclasses, Embeddable classes. Simple Java data types: Primitive types, Wrappers, String ... Superclasses In JPA, classes that are declared as mapped superclasses have some of the features of entity ... superclasses are treated by ObjectDB as ordinary entity classes. Mapped superclasses are really |
 100 | Enum Constant javax.persistence.metamodel.Type.PersistenceType MAPPED_SUPERCLASS Mapped superclass Since: JPA 2.0 |
 70 | The following JPA annotations and enums are designated for mapping a JPA object model to a relational database, and are not required by ObjectDB: ObjectDB silently ignores all the above annotations. |
 67 | All about Is ObjectDB better than Object Relational Mapping (ORM)? in Java/JPA database - explanations, examples, references, links and related information. |
 62 | , embeddable classes and mapped superclasses) with related settings. Defining a persistence unit ... classes and mapped superclasses), which are referred to by JPA as managed classes, as ...
<mapping-file>META-INF/mappingFile.xmlmapping-file>
packedEntity |
 57 | The following JDO annotations and enums are designated for mapping a JDO object model to a relational database, and are not required by ObjectDB: ObjectDB silently ignores all the above annotations. |
 57 | Fields of persistable user defined classes (entity classes, embeddable classes and mapped superclasses) can be classified into the following five groups: Transient fields Persistent fields Inverse (Mapped By) fields Primary key (ID) fields Version field The first three groups (transient, persistent |
 32 | Enum Constant javax.jdo.annotations.InheritanceStrategy SUPERCLASS_TABLE Since: JDO 2.1 |
 31 | is attached to exactly one entity class or mapped superclass - usually to the most relevant entity ... that named queries may be attached to any entity class or mapped superclass. Therefore, to be able ... can be defined in JPA XML mapping files instead of using the @NamedQuery annotation. ObjectDB supports JPA XML |
 26 | :
Class cls = type.getJavaType();
// Get one of BASIC, EMBEDDABLE, ENTITY, MAPPED_SUPERCLASS ... , mapped super classes)
Set allManagedTypes = metamodel.getManagedTypes ... instance:
// Get a managed type (entity, embeddable or mapped super classes):
ManagedType |