Uses of Interface
org.tentackle.model.Index
Packages that use Index
Package
Description
Entity model.
Default model implementation.
Database migration support.
Model pretty printing.
-
Uses of Index in org.tentackle.model
Methods in org.tentackle.model that return IndexModifier and TypeMethodDescriptionEntityFactory.createIndex(Entity entity, SourceInfo sourceInfo) Creates an index.Gets an index by its name.Methods in org.tentackle.model that return types with arguments of type IndexModifier and TypeMethodDescriptionEntity.getAllIndexes()Gets all including inherited and indexes from sub entities.Entity.getIndexes()Gets the indexes.Entity.getIndexesIncludingInherited()Gets all including inherited indexes.Entity.getIndexesIncludingSubEntities()Gets all including indexes from sub entities.Entity.getInheritedIndexes()Gets inherited indexes.Entity.getSubEntityIndexes()Gets indexes from sub entities.Entity.getTableIndexes()Gets the indexes of the table mapped by this entity.Methods in org.tentackle.model with parameters of type IndexModifier and TypeMethodDescriptionEntityFactory.createIndexAttribute(Index index) Creates an index attribute.CodeFactory.createSqlIndex(Backend backend, Entity entity, Index index) Creates the SQL code to create an index.NameVerifier.verifyIndexName(Index index) Verifies the name of an index. -
Uses of Index in org.tentackle.model.impl
Classes in org.tentackle.model.impl that implement IndexMethods in org.tentackle.model.impl that return IndexModifier and TypeMethodDescriptionIndexAttributeImpl.getIndex()Gets the index this attribute belongs to.Methods in org.tentackle.model.impl that return types with arguments of type IndexModifier and TypeMethodDescriptionEntityImpl.getAllIndexes()EntityImpl.getIndexes()EntityImpl.getIndexesIncludingInherited()EntityImpl.getIndexesIncludingSubEntities()EntityImpl.getInheritedIndexes()EntityImpl.getSubEntityIndexes()EntityImpl.getTableIndexes()Methods in org.tentackle.model.impl with parameters of type IndexModifier and TypeMethodDescriptionEntityFactoryImpl.createIndexAttribute(Index index) booleanIndexImpl.isLogicallyEqualTo(Index otherIndex) Checks whether other index is logically equal to this index.NameVerifierImpl.verifyIndexName(Index index) Constructors in org.tentackle.model.impl with parameters of type Index -
Uses of Index in org.tentackle.model.migrate
Methods in org.tentackle.model.migrate that return IndexMethods in org.tentackle.model.migrate with parameters of type IndexModifier and TypeMethodDescriptionstatic booleanIndexMigrator.isLogicallyDifferent(Index modelIndex, IndexMetaData dbIndex, StringBuilder commentBuf) Compares an model index with an existing database index.Constructors in org.tentackle.model.migrate with parameters of type IndexModifierConstructorDescriptionIndexMigrator(Entity entity, Index index, Backend backend, IndexMetaData indexMetaData) Creates a migrator. -
Uses of Index in org.tentackle.model.print
Constructors in org.tentackle.model.print with parameters of type IndexModifierConstructorDescriptionIndexPrinter(Index index, PrintConfiguration configuration) Creates an index printer.