Interface ColumnExpressionFactory

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 ColumnExpressionFactory
Factory to create expressions targeting a specific column.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(Column column, @Nullable Object... args)
    Creates a column expression.
  • Method Details

    • create

      ColumnExpression create(Column column, @Nullable Object... args)
      Creates a column expression.
      Parameters:
      column - Target column of the expression.
      args - Expression-specific additional arguments, if any.
      Returns:
      A new column expression.