Uses of Interface
org.apache.openjpa.jdbc.meta.FieldStrategy
Packages that use FieldStrategy
Package
Description
OpenJPA-JDBC ORM Metadata
OpenJPA-JDBC ORM Strategies
-
Uses of FieldStrategy in org.apache.openjpa.jdbc.meta
Classes in org.apache.openjpa.jdbc.meta that implement FieldStrategyModifier and TypeClassDescriptionclassSpecialization of metadata for relational databases.Methods in org.apache.openjpa.jdbc.meta that return FieldStrategyModifier and TypeMethodDescriptionprotected FieldStrategyMappingRepository.defaultStrategy(FieldMapping field, boolean installHandlers) Determine the default strategy to use for the given field.protected FieldStrategyMappingRepository.defaultStrategy(FieldMapping field, boolean installHandlers, boolean adapting) Determine the default strategy to use for the given field.protected FieldStrategyMappingRepository.defaultTypeStrategy(FieldMapping field, boolean installHandlers, boolean adapting) Return the built-in strategy for the field's type, or null if none.FieldMapping.getStrategy()The strategy used to map this mapping.protected FieldStrategyMappingRepository.handlerCollectionStrategy(FieldMapping field, ValueHandler ehandler, boolean installHandlers) Return the collection strategy for the given element handler, or null if none.protected FieldStrategyMappingRepository.handlerMapStrategy(FieldMapping field, ValueHandler khandler, ValueHandler vhandler, boolean krel, boolean vrel, boolean installHandlers) Return the map strategy for the given key and value handlers / relations, or null if none.protected FieldStrategyMappingRepository.namedStrategy(FieldMapping field, boolean installHandlers) Instantiate the given field's named strategy, or return null if no named strategy.Methods in org.apache.openjpa.jdbc.meta with parameters of type FieldStrategyModifier and TypeMethodDescriptionvoidFieldMapping.setStrategy(FieldStrategy strategy, Boolean adapt) The strategy used to map this mapping. -
Uses of FieldStrategy in org.apache.openjpa.jdbc.meta.strats
Subinterfaces of FieldStrategy in org.apache.openjpa.jdbc.meta.stratsModifier and TypeInterfaceDescriptioninterfaceInterface implemented by collection strategies so that they can support large result set collections.interfaceInterface implemented by map strategies so that they can support large result set maps.Classes in org.apache.openjpa.jdbc.meta.strats that implement FieldStrategyModifier and TypeClassDescriptionclassNo-op strategy for easy extension.classAn abstract container mapping that handles traversing the join to examine the size of the relation.classMapping for an embedded persistent object.classMapping for a collection of values in a separate table controlled by aValueHandler.classMapping for a single-valued field that delegates to aValueHandler.classMapping for a map of keys and values both controlled byValueHandlers.classMapping for a map whose keys are controlled by aValueHandlerand whose values are relations to other persistent objects.classDirect mapping from a stream value to a column.classBase class for map mappings.classMapping for serialized fields on a dictionary that has a maximum embedded BLOB size.classMapping for byte array fields on a dictionary that has a maximum embedded BLOB size.classMapping for CLOB character array on a dictionary that has a maximum embedded CLOB size.classMapping for CLOB string on a dictionary that has a maximum embedded CLOB size.classAn unmapped field.classDirect mapping from a primitive value to a column.classMaps a relation to a collection of other objects using an inverse foreign key in the related object table.classMaps a collection of related objects through an association table.classMapping for a single-valued relation to another entity.classMapping for a map whose keys are relations to other persistent objects and whose values are controlled by aValueHandler.classUses an inverse foreign key in the table of the map value to determine map values.classUses an association table to hold map values.classMapping for a map whose keys and values are both relations to other persistent objects.classMaps a relation to a set of other objects using an inverse foreign key in the related object table.classMaps a set of related objects through an association table.classBase class for strategies that are stored as a collection, even if their field value is something else.classDirect mapping from a string value to a column.