Uses of Interface
org.tentackle.model.Index
-
Packages that use Index Package Description org.tentackle.model Entity model.org.tentackle.model.impl Default model implementation.org.tentackle.model.migrate Database migration support.org.tentackle.model.print Model pretty printing. -
-
Uses of Index in org.tentackle.model
Methods in org.tentackle.model that return Index Modifier and Type Method Description IndexEntityFactory. createIndex(Entity entity, SourceInfo sourceInfo)Creates an index.IndexEntity. getIndex(java.lang.String name, boolean all)Gets an index by its name.Methods in org.tentackle.model that return types with arguments of type Index Modifier and Type Method Description java.util.List<Index>Entity. getAllIndexes()Gets all including inherited and indexes from sub entities.java.util.List<Index>Entity. getIndexes()Gets the indexes.java.util.List<Index>Entity. getIndexesIncludingInherited()Gets all including inherited indexes.java.util.List<Index>Entity. getIndexesIncludingSubEntities()Gets all including indexes from sub entities.java.util.List<Index>Entity. getInheritedIndexes()Gets inherited indexes.java.util.List<Index>Entity. getSubEntityIndexes()Gets indexes from sub entities.java.util.List<Index>Entity. getTableIndexes()Gets the indexes of the table mapped by this entity.Methods in org.tentackle.model with parameters of type Index Modifier and Type Method Description IndexAttributeEntityFactory. createIndexAttribute(Index index)Creates an index attribute.java.lang.StringCodeFactory. createSqlIndex(org.tentackle.sql.Backend backend, Entity entity, Index index)Creates the SQL code to create an index. -
Uses of Index in org.tentackle.model.impl
Classes in org.tentackle.model.impl that implement Index Modifier and Type Class Description classIndexImplIndex descriptor.Methods in org.tentackle.model.impl that return Index Modifier and Type Method Description IndexEntityImpl. getIndex(java.lang.String name, boolean all)IndexIndexAttributeImpl. getIndex()Gets the index this attribute belongs to.Methods in org.tentackle.model.impl that return types with arguments of type Index Modifier and Type Method Description java.util.List<Index>EntityImpl. getAllIndexes()java.util.List<Index>EntityImpl. getIndexes()java.util.List<Index>EntityImpl. getIndexesIncludingInherited()java.util.List<Index>EntityImpl. getIndexesIncludingSubEntities()java.util.List<Index>EntityImpl. getInheritedIndexes()java.util.List<Index>EntityImpl. getSubEntityIndexes()java.util.List<Index>EntityImpl. getTableIndexes()Methods in org.tentackle.model.impl with parameters of type Index Modifier and Type Method Description IndexAttributeImplEntityFactoryImpl. createIndexAttribute(Index index)Constructors in org.tentackle.model.impl with parameters of type Index Constructor Description IndexAttributeImpl(Index index)Creates an index attribute. -
Uses of Index in org.tentackle.model.migrate
Methods in org.tentackle.model.migrate that return Index Modifier and Type Method Description IndexIndexMigrator. getIndex()Gets the index to migrate.Constructors in org.tentackle.model.migrate with parameters of type Index Constructor Description IndexMigrator(Entity entity, Index index, org.tentackle.sql.Backend backend, org.tentackle.sql.metadata.IndexMetaData indexMetaData)Creates a migrator. -
Uses of Index in org.tentackle.model.print
Constructors in org.tentackle.model.print with parameters of type Index Constructor Description IndexPrinter(Index index, PrintConfiguration configuration)Creates an index printer.
-