Schnittstelle IEntityCreator

Alle bekannten Implementierungsklassen:
EntityCreator

public interface IEntityCreator
Version:
2024-12-20
Autor:
Silvan Wyss
  • Methodendetails

    • createEmptyEntityForTable

      <E extends IEntity> E createEmptyEntityForTable(ITable<E> table)
      Typparameter:
      E - is the type of the created IEntity.
      Parameter:
      table -
      Gibt zurück:
      a new empty IEntity for the given table.
      Löst aus:
      RuntimeException - if the given table is null.
    • createEmptyEntityForEntityType

      <E extends IEntity> E createEmptyEntityForEntityType(Class<E> entityType)
      Typparameter:
      E - is the type of the created IEntity.
      Parameter:
      entityType -
      Gibt zurück:
      a new empty IEntity of the given entityType.
      Löst aus:
      RuntimeException - if the given entityType is null.