Interface TableFactory<ENTITY>

Type Parameters:
ENTITY - the table model class.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface TableFactory<ENTITY>
Defines a factory to create instances of a database Table model.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a new instance of a database Table model.
  • Method Details

    • newInstance

      ENTITY newInstance(String alias)
      Creates a new instance of a database Table model.
      Parameters:
      alias - the table alias.
      Returns:
      the new table model instance.