Uses of Interface
jakarta.data.spi.expression.function.TextFunctionExpression
Packages that use TextFunctionExpression
-
Uses of TextFunctionExpression in jakarta.data.spi.expression.function
Methods in jakarta.data.spi.expression.function that return TextFunctionExpressionModifier and TypeMethodDescriptionstatic <T> TextFunctionExpression<T> TextFunctionExpression.of(String name, TextExpression<? super T> expression) Creates aTextFunctionExpressionto represent a function with the givennamethat accepts the given textualexpressionas input.static <T> TextFunctionExpression<T> TextFunctionExpression.of(String name, TextExpression<? super T> expression, int literal) Creates aTextFunctionExpressionto represent a function with the givennamethat accepts a textualexpressionand a numeric (literal) as input.static <T> TextFunctionExpression<T> TextFunctionExpression.of(String name, TextExpression<? super T> left, TextExpression<? super T> right) Creates aTextFunctionExpressionto represent a function with the givennamethat accepts textual expressions (leftandright) as input.static <T> TextFunctionExpression<T> TextFunctionExpression.of(String name, TextExpression<? super T> left, String right) Creates aTextFunctionExpressionto represent a function with the givennamethat accepts a textual expression (left) and aStringvalue (right) as input.static <T> TextFunctionExpression<T> TextFunctionExpression.of(String name, String left, TextExpression<? super T> right) Creates aTextFunctionExpressionto represent a function with the givennamethat accepts aStringvalue (left) and a textual expression (right) as input.