Uses of Interface
de.mid.innovator.srv2api.icw2er.EREntity
-
Packages that use EREntity Package Description de.mid.innovator.srv2api.icw2er The ER package (specialization of the IM package) deals with the modeling concepts for the Entity Relationship Model and, in particular, entities, attributes and their relationships.
In addition it deals with the concepts of Online Analytical Processing (OLAP) to build a data warehouse for business intelligence (BI) matters. -
-
Uses of EREntity in de.mid.innovator.srv2api.icw2er
Methods in de.mid.innovator.srv2api.icw2er that return EREntity Modifier and Type Method Description static EREntity
EREntityHelper. create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer)
Create a new Entity with template and container.static EREntity
EREntityHelper. create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer)
Create a new Entity with stereotype and container.EREntity
ERRole. getConnectedEntity()
EREntity
ERRelationship. getEntityForeignKey()
Returns theEREntity
at the foreign key side of thisERRelationship
.EREntity
ERRelationship. getEntitySERMLeft()
Returns theEREntity
at the left side of anERRelationship
which conforms to SERM.EREntity
ERRelationship. getEntitySERMRight()
Returns theEREntity
at the right side of anERRelationship
which conforms to SERM.EREntity
ERRelationship. getEntityUniqueKey()
Returns theEREntity
at the unique key side of thisERRelationship
.EREntity
ERAttribute. getOwningEntity()
EREntity
ERForeignKey. getOwningEntity()
Reference to the entity of the foreign key.EREntity
ERRole. getOwningEntity()
EREntity
ERUniqueKey. getOwningEntity()
EREntity
ERForeignKey. getUniqueKeyEntity()
EREntity
ERRelationship. transformToRType()
Precondition: thisERRelationship
must not be implemented by anERForeignKey
!Methods in de.mid.innovator.srv2api.icw2er that return types with arguments of type EREntity Modifier and Type Method Description java.util.List<EREntity>
ERRelationship. getEntity(K_CONTROL_OPTION... behaviourFlags)
List of all entities of thisERRelationship
.Methods in de.mid.innovator.srv2api.icw2er with parameters of type EREntity Modifier and Type Method Description ERForeignKey
EREntity. getAssignCandidateForeignKey(EREntity refObj)
Gets anERForeignKey
of thisEREntity
which can be assigned to anIMForeignKeyAble
ERRole
orERGeneralization
.java.util.List<ERAttribute>
ERAttribute. getERKeyRelationshipAttributeRecursive(EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
List of foreign key attributes, referencing this unique key attribute indirectly.java.util.List<ERForeignKey>
EREntity. getForeignKeyByReferencedEntity(EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
java.util.List<ERForeignKey>
EREntity. getForeignKeyByReferencedEntity(MMStereotype stereotype, EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
The method calls getForeignKeyByReferencedEntity and filters its return values according to the given stereotype value.<T extends ERRelationship>
java.util.List<T>EREntity. getRelationshipOfEntity(java.lang.Class<T> returnType, EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
<T extends ERRelationship>
java.util.List<T>EREntity. getRelationshipOfEntity(java.lang.Class<T> returnType, MMStereotype stereotype, EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
The method calls getRelationshipOfEntity and filters its return values according to the given stereotype value.java.util.List<ERGeneralization>
EREntity. getUniqueKeyGeneralization(EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
Returns the list of all generalizations which potentially lead to a foreign key in the partner entity.java.util.List<ERGeneralization>
EREntity. getUniqueKeyGeneralization(MMStereotype stereotype, EREntity refObj, K_CONTROL_OPTION... behaviourFlags)
The method calls getUniqueKeyGeneralization and filters its return values according to the given stereotype value.void
ERRole. setConnectedEntity(EREntity value)
Set the value of Foreign Key ConnectedEntity.
-