Uses of Interface
org.apache.openjpa.jdbc.meta.ClassStrategy
-
Packages that use ClassStrategy Package Description org.apache.openjpa.jdbc.meta OpenJPA-JDBC ORM Metadataorg.apache.openjpa.jdbc.meta.strats OpenJPA-JDBC ORM Strategies -
-
Uses of ClassStrategy in org.apache.openjpa.jdbc.meta
Classes in org.apache.openjpa.jdbc.meta that implement ClassStrategy Modifier and Type Class Description classClassMappingSpecialization of metadata for relational databases.Methods in org.apache.openjpa.jdbc.meta that return ClassStrategy Modifier and Type Method Description protected ClassStrategyMappingRepository. defaultStrategy(ClassMapping cls)Determine the default strategy to use for the given class.protected ClassStrategyMappingRepository. defaultStrategy(ClassMapping cls, boolean adapting)Determine the default strategy to use for the given class.ClassStrategyClassMapping. getStrategy()The strategy used to map this mapping.protected ClassStrategyMappingRepository. instantiateClassStrategy(java.lang.String name, ClassMapping cls)Return the strategy for the given name.protected ClassStrategyMappingRepository. namedStrategy(ClassMapping cls)Instantiate the given class' named strategy, or return null if no named strategy.Methods in org.apache.openjpa.jdbc.meta with parameters of type ClassStrategy Modifier and Type Method Description voidClassMapping. setStrategy(ClassStrategy strategy, java.lang.Boolean adapt)The strategy used to map this mapping. -
Uses of ClassStrategy in org.apache.openjpa.jdbc.meta.strats
Classes in org.apache.openjpa.jdbc.meta.strats that implement ClassStrategy Modifier and Type Class Description classAbstractClassStrategyNo-op strategy for easy extension.classEmbeddedClassStrategyClass mapping for embedded objects.classFlatClassStrategyMapping for classes mapped to their superclass table.classFullClassStrategyMapping for when the class maps all fields to its own table.classNoneClassStrategyStrategy for classes that aren't mapped.classObjectIdClassStrategyClass mapping for embedded object id fields.classVerticalClassStrategyMapping for subclasses that join to their superclass table.
-