Schnittstelle IEntityCreator
- Alle bekannten Implementierungsklassen:
EntityCreator
public interface IEntityCreator
- Version:
- 2024-12-20
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibung<E extends IEntity>
EcreateEmptyEntityForEntityType
(Class<E> entityType) <E extends IEntity>
EcreateEmptyEntityForTable
(ITable<E> table)
-
Methodendetails
-
createEmptyEntityForTable
- Typparameter:
E
- is the type of the createdIEntity
.- Parameter:
table
-- Gibt zurück:
- a new empty
IEntity
for the given table. - Löst aus:
RuntimeException
- if the given table is null.
-
createEmptyEntityForEntityType
- Typparameter:
E
- is the type of the createdIEntity
.- Parameter:
entityType
-- Gibt zurück:
- a new empty
IEntity
of the given entityType. - Löst aus:
RuntimeException
- if the given entityType is null.
-