Uses of Interface
jakarta.persistence.criteria.TextExpression
Packages that use TextExpression
Package
Description
Defines the Jakarta Persistence Criteria Query API.
-
Uses of TextExpression in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return TextExpressionModifier and TypeMethodDescriptionTextExpression.append(Expression<String> y) Create an expression for string concatenation.Create an expression for string concatenation.TextExpression.coalesce(Expression<? extends String> y) Path.get(TextAttribute<? super X> attribute) Create a path corresponding to the referenced single-valued attribute.TextExpression.left(int len) Create an expression for the leftmost substring of this string.TextExpression.left(Expression<Integer> len) Create an expression for the leftmost substring of this string.TextExpression.lower()Create expression for converting this string to lowercase.TextExpression.nullif(Expression<? extends String> y) TextExpression.prepend(Expression<String> y) Create an expression for string concatenation.Create an expression for string concatenation.TextExpression.replace(Expression<String> substring, Expression<String> replacement) Create an expression replacing every occurrence of a substring within this string.TextExpression.replace(Expression<String> substring, String replacement) Create an expression replacing every occurrence of a substring within this string.TextExpression.replace(String substring, Expression<String> replacement) Create an expression replacing every occurrence of a substring within this string.Create an expression replacing every occurrence of a substring within this string.TextExpression.right(int len) Create an expression for the rightmost substring of this string.TextExpression.right(Expression<Integer> len) Create an expression for the rightmost substring of this string.CriteriaBuilder.stringLiteral(String value) Create a string expression for a literal.TextExpression.substring(int from) Create an expression for substring extraction.TextExpression.substring(int from, int len) Create an expression for substring extraction.TextExpression.substring(Expression<Integer> from) Create an expression for substring extraction.TextExpression.substring(Expression<Integer> from, Expression<Integer> len) Create an expression for substring extraction.TextExpression.trim()Create expression to trim blanks from both ends of this string.TextExpression.trim(char t) Create expression to trim character from both ends of this string.TextExpression.trim(CriteriaBuilder.Trimspec ts) Create expression to trim blanks from this string.TextExpression.trim(CriteriaBuilder.Trimspec ts, char t) Create expression to trim character from this string.TextExpression.trim(CriteriaBuilder.Trimspec ts, Expression<Character> t) Create expression to trim character from this string.TextExpression.trim(Expression<Character> t) Create expression to trim character from both ends of this string.TextExpression.upper()Create expression for converting this string to uppercase.