Uses of Class
org.apache.openjpa.persistence.query.TrimSpec
-
Packages that use TrimSpec Package Description org.apache.openjpa.persistence.query OpenJPA Dynamic Query -
-
Uses of TrimSpec in org.apache.openjpa.persistence.query
Methods in org.apache.openjpa.persistence.query that return TrimSpec Modifier and Type Method Description static TrimSpec
TrimSpec. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TrimSpec[]
TrimSpec. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.openjpa.persistence.query with parameters of type TrimSpec Modifier and Type Method Description Expression
Expression. trim(char c, TrimSpec spec)
Trim occurrences of the character from leading or trailing (or both) positions of the string, as specified by trim spec.Expression
Expression. trim(Expression expr, TrimSpec spec)
Trim occurrences of the character specified by the expression argument from leading or trailing (or both) positions of the string, as specified by trim spec.Expression
Expression. trim(TrimSpec spec)
Trim leading, trailing blanks (or both) as specified by trim spec.Constructors in org.apache.openjpa.persistence.query with parameters of type TrimSpec Constructor Description TrimExpression(Expression op, char ch, TrimSpec spec)
TrimExpression(Expression op, Expression ch, TrimSpec spec)
-