|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ObjEntity | |
---|---|
org.apache.cayenne | Contains persistence APIs directly accessible by users. |
org.apache.cayenne.access | Contains classes that make up Cayenne ORM stack. |
org.apache.cayenne.access.jdbc | Contains classes that handle JDBC interactions. |
org.apache.cayenne.access.trans | Provides translators for Cayenne queries. |
org.apache.cayenne.ashwood | |
org.apache.cayenne.configuration | |
org.apache.cayenne.map | Contains O/R mapping classes that store relational database metadata information and map it to Java classes. |
org.apache.cayenne.merge | |
org.apache.cayenne.query | Defines standard queries supported by Cayenne and extension mechanism to create custom queries. |
org.apache.cayenne.reflect | |
org.apache.cayenne.reflect.generic | |
org.apache.cayenne.util | General utility classes. |
Uses of ObjEntity in org.apache.cayenne |
---|
Methods in org.apache.cayenne that return ObjEntity | |
---|---|
ObjEntity |
PersistentObject.getObjEntity()
Deprecated. since 3.1 Cayenne.getObjEntity(Persistent) is used |
static ObjEntity |
Cayenne.getObjEntity(Persistent p)
Returns mapped ObjEntity for object. |
Uses of ObjEntity in org.apache.cayenne.access |
---|
Fields in org.apache.cayenne.access declared as ObjEntity | |
---|---|
protected ObjEntity |
IncrementalFaultList.rootEntity
|
Methods in org.apache.cayenne.access with parameters of type ObjEntity | |
---|---|
void |
DbLoaderDelegate.objEntityAdded(ObjEntity ent)
|
void |
DbLoaderDelegate.objEntityRemoved(ObjEntity ent)
|
Uses of ObjEntity in org.apache.cayenne.access.jdbc |
---|
Fields in org.apache.cayenne.access.jdbc declared as ObjEntity | |
---|---|
protected ObjEntity |
EJBQLPathTranslator.currentEntity
|
Uses of ObjEntity in org.apache.cayenne.access.trans |
---|
Methods in org.apache.cayenne.access.trans that return ObjEntity | |
---|---|
ObjEntity |
QueryAssemblerHelper.getObjEntity()
|
ObjEntity |
QueryAssembler.getRootEntity()
|
Uses of ObjEntity in org.apache.cayenne.ashwood |
---|
Fields in org.apache.cayenne.ashwood with type parameters of type ObjEntity | |
---|---|
protected java.util.Comparator<ObjEntity> |
AshwoodEntitySorter.objEntityComparator
|
Methods in org.apache.cayenne.ashwood that return types with arguments of type ObjEntity | |
---|---|
protected java.util.Comparator<ObjEntity> |
AshwoodEntitySorter.getObjEntityComparator(boolean dependantFirst)
|
Methods in org.apache.cayenne.ashwood with parameters of type ObjEntity | |
---|---|
void |
AshwoodEntitySorter.sortObjectsForEntity(ObjEntity objEntity,
java.util.List<?> objects,
boolean deleteOrder)
|
Method parameters in org.apache.cayenne.ashwood with type arguments of type ObjEntity | |
---|---|
void |
AshwoodEntitySorter.sortObjEntities(java.util.List<ObjEntity> objEntities,
boolean deleteOrder)
|
Uses of ObjEntity in org.apache.cayenne.configuration |
---|
Methods in org.apache.cayenne.configuration with parameters of type ObjEntity | |
---|---|
T |
BaseConfigurationNodeVisitor.visitObjEntity(ObjEntity entity)
|
T |
ConfigurationNodeVisitor.visitObjEntity(ObjEntity entity)
|
Uses of ObjEntity in org.apache.cayenne.map |
---|
Fields in org.apache.cayenne.map declared as ObjEntity | |
---|---|
protected ObjEntity |
EntityInheritanceTree.entity
|
Fields in org.apache.cayenne.map with type parameters of type ObjEntity | |
---|---|
protected java.util.Map<java.lang.String,ObjEntity> |
EntityResolver.objEntityCache
|
Methods in org.apache.cayenne.map that return ObjEntity | |
---|---|
protected ObjEntity |
EntityResolver._lookupObjEntity(java.lang.String key)
Internal usage only - provides the type-unsafe implementation which services the three typesafe public lookupObjEntity methods Looks in the DataMap's that this object was created with for the ObjEntity that maps to the specified object. |
ObjEntity |
EntityInheritanceTree.entityMatchingRow(DataRow row)
Returns the deepest possible entity in the inheritance hierarchy that can be used to create objects from a given DataRow. |
ObjEntity |
ObjEntity.getClientEntity()
Returns an ObjEntity stripped of any server-side information, such as DbEntity mapping. |
ObjEntity |
EntityInheritanceTree.getEntity()
|
ObjEntity |
DataMap.getObjEntity(java.lang.String objEntityName)
Returns an ObjEntity for a given name. |
ObjEntity |
EntityResolver.getObjEntity(java.lang.String name)
|
ObjEntity |
MappingNamespace.getObjEntity(java.lang.String name)
Returns ObjEntity for a given name, or null if no such ObjEntity is found in the MappingNamespace. |
ObjEntity |
DataMap.getObjEntityForJavaClass(java.lang.String javaClassName)
Returns an ObjEntity for a DataObject class name. |
ObjEntity |
ObjEntity.getSuperEntity()
Returns a "super" entity in the entity inheritance hierarchy. |
ObjEntity |
EntityResolver.lookupObjEntity(java.lang.Class<?> aClass)
Looks in the DataMap's that this object was created with for the ObjEntity that maps to the services the specified class |
ObjEntity |
EntityResolver.lookupObjEntity(java.lang.Object object)
Looks in the DataMap's that this object was created with for the ObjEntity that services the specified data Object |
Methods in org.apache.cayenne.map that return types with arguments of type ObjEntity | |
---|---|
java.util.Collection<ObjEntity> |
EntityInheritanceTree.allSubEntities()
Returns a collection containing this inheritance tree node entity and all its subentities. |
java.util.Collection<ObjEntity> |
DataMap.getMappedEntities(DbEntity dbEntity)
Returns all ObjEntities mapped to the given DbEntity. |
java.util.Collection<ObjEntity> |
DataMap.getObjEntities()
Returns an unmodifiable collection of ObjEntities stored in this DataMap. |
java.util.Collection<ObjEntity> |
EntityResolver.getObjEntities()
|
java.util.Collection<ObjEntity> |
MappingNamespace.getObjEntities()
Returns all ObjEntities in the namespace. |
java.util.SortedMap<java.lang.String,ObjEntity> |
DataMap.getObjEntityMap()
Returns a sorted unmodifiable map of ObjEntities contained in this DataMap, keyed by ObjEntity name. |
Methods in org.apache.cayenne.map with parameters of type ObjEntity | |
---|---|
void |
DataMap.addObjEntity(ObjEntity entity)
Adds a new ObjEntity to this DataMap. |
java.lang.Object |
EntityListenerFactory.createListener(EntityListener listenerMapping,
ObjEntity entity)
Creates an instance of entity listener of a given class. |
java.util.Iterator<CayenneMapEntry> |
ObjAttribute.getDbPathIterator(ObjEntity entity)
|
boolean |
ObjEntity.isSubentityOf(ObjEntity entity)
Returns true if this entity directly or indirectly inherits from a given entity, false otherwise. |
EntityInheritanceTree |
EntityResolver.lookupInheritanceTree(ObjEntity entity)
Deprecated. since 3.1 use EntityResolver.lookupInheritanceTree(String) . |
void |
EntitySorter.sortObjectsForEntity(ObjEntity entity,
java.util.List<?> objects,
boolean deleteOrder)
Sorts a list of objects belonging to the ObjEntity. |
Method parameters in org.apache.cayenne.map with type arguments of type ObjEntity | |
---|---|
void |
EntitySorter.sortObjEntities(java.util.List<ObjEntity> objEntities,
boolean deleteOrder)
Sorts a list of ObjEntities. |
Constructors in org.apache.cayenne.map with parameters of type ObjEntity | |
---|---|
EmbeddedAttribute(java.lang.String name,
java.lang.String type,
ObjEntity entity)
|
|
EntityInheritanceTree(ObjEntity entity)
|
|
ObjAttribute(java.lang.String name,
java.lang.String type,
ObjEntity entity)
|
Uses of ObjEntity in org.apache.cayenne.merge |
---|
Methods in org.apache.cayenne.merge that return types with arguments of type ObjEntity | |
---|---|
protected java.util.Collection<ObjEntity> |
AbstractToModelToken.objEntitiesMappedToDbEntity(DbEntity entity)
|
Methods in org.apache.cayenne.merge with parameters of type ObjEntity | |
---|---|
void |
ModelMergeDelegate.objEntityAdded(ObjEntity ent)
|
void |
ModelMergeDelegate.objEntityRemoved(ObjEntity ent)
|
Uses of ObjEntity in org.apache.cayenne.query |
---|
Methods in org.apache.cayenne.query that return ObjEntity | |
---|---|
ObjEntity |
QueryMetadata.getObjEntity()
Returns an ObjEntity associated with a query or null if no such entity exists. |
Constructors in org.apache.cayenne.query with parameters of type ObjEntity | |
---|---|
SelectQuery(ObjEntity root)
Creates a SelectQuery with null qualifier, for the specifed ObjEntity |
|
SelectQuery(ObjEntity root,
Expression qualifier)
Creates a SelectQuery for the specified ObjEntity with the given qualifier. |
|
SelectQuery(ObjEntity root,
Expression qualifier,
java.util.List<Ordering> orderings)
Creates a SelectQuery for the specified ObjEntity with the given qualifier and orderings. |
|
SQLTemplate(ObjEntity rootEntity,
java.lang.String defaultTemplate)
|
Uses of ObjEntity in org.apache.cayenne.reflect |
---|
Fields in org.apache.cayenne.reflect declared as ObjEntity | |
---|---|
protected ObjEntity |
PersistentDescriptor.entity
|
Methods in org.apache.cayenne.reflect that return ObjEntity | |
---|---|
ObjEntity |
ClassDescriptor.getEntity()
Returns an ObjEntity associated with this descriptor. |
ObjEntity |
LazyClassDescriptorDecorator.getEntity()
|
ObjEntity |
PersistentDescriptor.getEntity()
|
Methods in org.apache.cayenne.reflect with parameters of type ObjEntity | |
---|---|
protected ClassDescriptor |
PersistentDescriptorFactory.getDescriptor(ObjEntity entity,
java.lang.Class<?> entityClass)
|
void |
PersistentDescriptor.setEntity(ObjEntity entity)
|
Uses of ObjEntity in org.apache.cayenne.reflect.generic |
---|
Methods in org.apache.cayenne.reflect.generic with parameters of type ObjEntity | |
---|---|
protected ClassDescriptor |
DataObjectDescriptorFactory.getDescriptor(ObjEntity entity,
java.lang.Class<?> entityClass)
|
Uses of ObjEntity in org.apache.cayenne.util |
---|
Methods in org.apache.cayenne.util with parameters of type ObjEntity | |
---|---|
protected java.util.List<DbAttribute> |
EntityMergeSupport.getAttributesToAdd(ObjEntity objEntity)
Returns a list of attributes that exist in the DbEntity, but are missing from the ObjEntity. |
java.util.Collection<DbAttribute> |
EntityMergeSupport.getMeaningfulFKs(ObjEntity objEntity)
Returns a list of DbAttributes that are mapped to foreign keys. |
protected java.util.List<DbRelationship> |
EntityMergeSupport.getRelationshipsToAdd(ObjEntity objEntity)
|
boolean |
EntityMergeSupport.synchronizeWithDbEntity(ObjEntity entity)
Updates ObjEntity attributes and relationships based on the current state of its DbEntity. |
static void |
DeleteRuleUpdater.updateObjEntity(ObjEntity e)
Updates delete rules for all relationships in a objentity |
Method parameters in org.apache.cayenne.util with type arguments of type ObjEntity | |
---|---|
boolean |
EntityMergeSupport.synchronizeWithDbEntities(java.util.Collection<ObjEntity> objEntities)
Updates each one of the collection of ObjEntities, adding attributes and relationships based on the current state of its DbEntity. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |