Interface Table

  • 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 Table
    The Table interface is a representation of a table with a name.
    • Method Detail

      • tableName

        java.lang.String tableName()
        The table name
        Returns:
        The table name
      • withAlias

        default java.lang.String withAlias​(java.lang.String alias)
        The table name with alias
        Parameters:
        alias - The alias
        Returns:
        The table name with alias