Uses of Class
org.apache.cayenne.map.DataMap
Packages that use DataMap
Package
Description
Contains classes that make up Cayenne ORM stack.
Contains database adapter API (DbAdapter) and its default implementation.
Contains O/R mapping classes that store relational database
metadata information and map it to Java classes.
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries.
General utility classes.
-
Uses of DataMap in org.apache.cayenne.access
Fields in org.apache.cayenne.access declared as DataMapFields in org.apache.cayenne.access with type parameters of type DataMapMethods in org.apache.cayenne.access that return DataMapModifier and TypeMethodDescriptionDataDomain.getDataMap
(String mapName) DataNode.getDataMap
(String name) Returns datamap with specified name, null if none presentMethods in org.apache.cayenne.access that return types with arguments of type DataMapModifier and TypeMethodDescriptionDataDomain.getDataMaps()
Returns a collection of registered DataMaps.DataNode.getDataMaps()
Returns an unmodifiable collection of DataMaps handled by this DataNode.Methods in org.apache.cayenne.access with parameters of type DataMapModifier and TypeMethodDescriptionvoid
DataDomain.addDataMap
(DataMap dataMap) void
DataNode.addDataMap
(DataMap map) Adds a DataMap to be handled by this node.DataDomain.lookupDataNode
(DataMap map) Returns a DataNode that should handle queries for all entities in a DataMap.DataNode.lookupDataNode
(DataMap dataMap) Returns a DataNode that should handle queries for all DataMap components.void
DataNode.removeDataMap
(DataMap map) Method parameters in org.apache.cayenne.access with type arguments of type DataMapConstructors in org.apache.cayenne.access with parameters of type DataMapModifierConstructorDescriptionDbGenerator
(DbAdapter adapter, DataMap map, Collection<DbEntity> excludedEntities, DataDomain domain, JdbcEventLogger logger) Creates and initializes new DbGenerator instance.DbGenerator
(DbAdapter adapter, DataMap map, JdbcEventLogger logger) DbGenerator
(DbAdapter adapter, DataMap map, JdbcEventLogger logger, Collection<DbEntity> excludedEntities) -
Uses of DataMap in org.apache.cayenne.configuration
Fields in org.apache.cayenne.configuration with type parameters of type DataMapMethods in org.apache.cayenne.configuration that return DataMapMethods in org.apache.cayenne.configuration that return types with arguments of type DataMapMethods in org.apache.cayenne.configuration with parameters of type DataMapModifier and TypeMethodDescriptionBaseConfigurationNodeVisitor.visitDataMap
(DataMap dataMap) ConfigurationNodeVisitor.visitDataMap
(DataMap dataMap) EmptyConfigurationNodeVisitor.visitDataMap
(DataMap dataMap) -
Uses of DataMap in org.apache.cayenne.configuration.xml
Methods in org.apache.cayenne.configuration.xml that return DataMapMethods in org.apache.cayenne.configuration.xml with parameters of type DataMapModifier and TypeMethodDescriptionvoid
LoaderContext.dataMapLoaded
(DataMap dataMap) void
DataMapLoaderListener.onDataMapLoaded
(DataMap dataMap) Constructors in org.apache.cayenne.configuration.xml with parameters of type DataMapModifierConstructorDescriptionDbEntityHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap dataMap) DbRelationshipHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap map) EmbeddableHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap map) ObjEntityHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap map) ObjRelationshipHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap map) ProcedureHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap map) QueryDescriptorHandler
(NamespaceAwareNestedTagHandler parentHandler, DataMap map) -
Uses of DataMap in org.apache.cayenne.dba
Methods in org.apache.cayenne.dba with parameters of type DataMapModifier and TypeMethodDescriptionvoid
DefaultQuotingStrategy.quotedIdentifier
(DataMap dataMap, CharSequence identifier, Appendable appender) DefaultQuotingStrategy.quotedIdentifier
(DataMap dataMap, String... identifierParts) void
QuotingStrategy.quotedIdentifier
(DataMap dataMap, CharSequence identifier, Appendable appender) Append quoted identifier to provided appenderQuotingStrategy.quotedIdentifier
(DataMap dataMap, String... identifierParts) -
Uses of DataMap in org.apache.cayenne.map
Fields in org.apache.cayenne.map declared as DataMapModifier and TypeFieldDescriptionprotected DataMap
Embeddable.dataMap
protected DataMap
Entity.dataMap
protected DataMap
Procedure.dataMap
protected DataMap
QueryDescriptor.dataMap
protected DataMap
QueryDescriptorLoader.dataMap
Fields in org.apache.cayenne.map with type parameters of type DataMapMethods in org.apache.cayenne.map that return DataMapModifier and TypeMethodDescriptionDataMap.getClientDataMap
(EntityResolver serverResolver) Returns a DataMap stripped of any server-side information, such as DbEntity mapping, or ObjEntities that are not allowed in the client tier.Embeddable.getDataMap()
Entity.getDataMap()
EntityResolver.getDataMap
(String mapName) Returns a DataMap matching the name.Procedure.getDataMap()
QueryDescriptor.getDataMap()
Methods in org.apache.cayenne.map that return types with arguments of type DataMapModifier and TypeMethodDescriptionEntityResolver.getDataMaps()
Returns an unmodifiable collection of DataMaps.Methods in org.apache.cayenne.map with parameters of type DataMapModifier and TypeMethodDescriptionvoid
EntityResolver.addDataMap
(DataMap map) int
void
DataMap.mergeWithDataMap
(DataMap map) Adds all Object and DB entities and Queries from another map to this map.void
EntityResolver.removeDataMap
(DataMap map) void
Embeddable.setDataMap
(DataMap dataMap) void
Entity.setDataMap
(DataMap dataMap) Sets parent DataMap of this entity.void
Procedure.setDataMap
(DataMap dataMap) Sets parent DataMap of this entity.void
QueryDescriptor.setDataMap
(DataMap dataMap) void
Sets the information pertaining to the root of the query.Method parameters in org.apache.cayenne.map with type arguments of type DataMapConstructor parameters in org.apache.cayenne.map with type arguments of type DataMapModifierConstructorDescriptionEntityResolver
(Collection<DataMap> dataMaps) Creates new EntityResolver that indexes a collection of DataMaps. -
Uses of DataMap in org.apache.cayenne.map.event
Methods in org.apache.cayenne.map.event with parameters of type DataMapModifier and TypeMethodDescriptionvoid
EmbeddableListener.embeddableAdded
(EmbeddableEvent e, DataMap map) New EmbeddableAttribute has been created/added.void
EmbeddableListener.embeddableChanged
(EmbeddableEvent e, DataMap map) EmbeddableAttribute property changed.void
EmbeddableListener.embeddableRemoved
(EmbeddableEvent e, DataMap map) EmbeddableAttribute has been removed. -
Uses of DataMap in org.apache.cayenne.query
Fields in org.apache.cayenne.query declared as DataMapMethods in org.apache.cayenne.query that return DataMapModifier and TypeMethodDescriptionQueryMetadata.getDataMap()
Returns a DataMap associated with a query or null if no such DataMap exists.QueryMetadataProxy.getDataMap()
Methods in org.apache.cayenne.query with parameters of type DataMapModifier and TypeMethodDescriptionQueryRouter.engineForDataMap
(DataMap map) Returns a QueryEngine that is configured to handle a given DataMap.Constructors in org.apache.cayenne.query with parameters of type DataMapModifierConstructorDescriptionSQLTemplate
(DataMap rootMap, String defaultTemplate, boolean isFetchingDataRows) -
Uses of DataMap in org.apache.cayenne.util
Methods in org.apache.cayenne.util with parameters of type DataMapModifier and TypeMethodDescriptionstatic void
DeleteRuleUpdater.updateDataMap
(DataMap map) Updates delete rules for all obj entities in a datamap