Interface LiteralExpressionFactory

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 LiteralExpressionFactory
Factory to create literal value expressions.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(@Nullable Object value)
    Creates a literal value expression.
  • Method Details

    • create

      LiteralExpression create(@Nullable Object value)
      Creates a literal value expression.
      Parameters:
      value - The literal value to be represented.
      Returns:
      A new literal expression.