Package org.hibernate.dialect.function
Class AbstractRegexpLikeFunction
java.lang.Object
org.hibernate.query.sqm.function.AbstractSqmFunctionDescriptor
org.hibernate.query.sqm.function.AbstractSqmSelfRenderingFunctionDescriptor
org.hibernate.dialect.function.AbstractRegexpLikeFunction
- All Implemented Interfaces:
FunctionRenderer
,SqmFunctionDescriptor
- Direct Known Subclasses:
HANARegexpLikeFunction
,HSQLRegexpLikeFunction
,RegexpLikePredicateFunction
,RegexpPredicateFunction
Base implementation for the regexp_like predicate.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetSignature
(String name) Used only for pretty-printing the function signature in the LOG.boolean
Whether the function renders as a predicate.Methods inherited from class org.hibernate.query.sqm.function.AbstractSqmSelfRenderingFunctionDescriptor
filterClauseSupported, generateSqmAggregateFunctionExpression, generateSqmFunctionExpression, generateSqmOrderedSetAggregateFunctionExpression, generateSqmWindowFunctionExpression, getFunctionKind, render
Methods inherited from class org.hibernate.query.sqm.function.AbstractSqmFunctionDescriptor
generateAggregateSqmExpression, generateOrderedSetAggregateSqmExpression, generateSqmExpression, generateWindowSqmExpression, getArgumentListSignature, getArgumentsValidator, getArgumentTypeResolver, getName, getReturnSignature, getReturnTypeResolver
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.query.sqm.function.FunctionRenderer
render, render, render, render
Methods inherited from interface org.hibernate.query.sqm.function.SqmFunctionDescriptor
alwaysIncludesParentheses, generateSqmExpression, generateSqmExpression
-
Constructor Details
-
AbstractRegexpLikeFunction
-
-
Method Details
-
getSignature
Description copied from interface:SqmFunctionDescriptor
Used only for pretty-printing the function signature in the LOG.- Specified by:
getSignature
in interfaceSqmFunctionDescriptor
- Overrides:
getSignature
in classAbstractSqmFunctionDescriptor
- Parameters:
name
- the function name- Returns:
- the signature of the function
-
isPredicate
public boolean isPredicate()Description copied from interface:SqmFunctionDescriptor
Whether the function renders as a predicate.
-