Uses of Class
org.hibernate.envers.query.criteria.AuditFunction
Packages that use AuditFunction
Package
Description
-
Uses of AuditFunction in org.hibernate.envers.internal.tools.query
Methods in org.hibernate.envers.internal.tools.query with parameters of type AuditFunctionModifier and TypeMethodDescriptionvoid
QueryBuilder.addProjection
(Configuration configuration, Map<String, String> aliasToEntityNameMap, Map<String, String> aliasToComponentPropertyNameMap, AuditFunction function) void
Parameters.addWhereWithFunction
(Configuration configuration, Map<String, String> aliasToEntityNameMap, Map<String, String> aliasToComponentPropertyNameMap, String aliasLeft, String left, String op, AuditFunction function) Adds a where clause with a left (optionally aliased) property and a function call on the right side.void
Parameters.addWhereWithFunction
(Configuration configuration, Map<String, String> aliasToEntityNameMap, Map<String, String> aliasToComponentPropertyNameMap, AuditFunction function, String op, Object value) Add where clause with a function call on the left and a scalar value on the right.void
Parameters.addWhereWithFunction
(Configuration configuration, Map<String, String> aliasToEntityNameMap, Map<String, String> aliasToComponentPropertyNameMap, AuditFunction function, String op, String aliasRight, String right) Add a where clause with a function call on the left and an optionally aliased property on the right.void
Parameters.addWhereWithFunction
(Configuration configuration, Map<String, String> aliasToEntityNameMap, Map<String, String> aliasToComponentPropertyNameMap, AuditFunction left, String op, AuditFunction right) Adds a where clause with a function call on both the left and right of the predicate. -
Uses of AuditFunction in org.hibernate.envers.query
Methods in org.hibernate.envers.query that return AuditFunctionModifier and TypeMethodDescriptionstatic AuditFunction
Create restrictions or projections using a function. -
Uses of AuditFunction in org.hibernate.envers.query.criteria
Methods in org.hibernate.envers.query.criteria with parameters of type AuditFunctionModifier and TypeMethodDescriptionAuditFunction.eqFunction
(AuditFunction otherFunction) Apply an "equal" constraint to another functionAuditProperty.eqFunction
(AuditFunction otherFunction) Apply an "equal" constraint to a functionAuditFunction.geFunction
(AuditFunction otherFunction) Apply a "greater than or equal" constraint to another functionAuditProperty.geFunction
(AuditFunction otherFunction) Apply a "greater than or equal" constraint to a functionAuditFunction.gtFunction
(AuditFunction otherFunction) Apply a "greater than" constraint to another functionAuditProperty.gtFunction
(AuditFunction otherFunction) Apply a "greater than" constraint to a functionAuditFunction.leFunction
(AuditFunction otherFunction) Apply a "less than or equal" constraint to another functionAuditProperty.leFunction
(AuditFunction otherFunction) Apply a "less than or equal" constraint to a functionAuditFunction.ltFunction
(AuditFunction otherFunction) Apply a "less than" constraint to another functionAuditProperty.ltFunction
(AuditFunction otherFunction) Apply a "less than" constraint to a functionAuditFunction.neFunction
(AuditFunction otherFunction) Apply a "not equal" constraint to another functionAuditProperty.neFunction
(AuditFunction otherFunction) Apply a "not equal" constraint to a function -
Uses of AuditFunction in org.hibernate.envers.query.criteria.internal
Constructors in org.hibernate.envers.query.criteria.internal with parameters of type AuditFunctionModifierConstructorDescriptionFunctionFunctionAuditExpression
(AuditFunction leftFunction, AuditFunction rightFunction, String op) FunctionPropertyAuditExpression
(String alias, PropertyNameGetter propertyNameGetter, AuditFunction function, String op) PropertyFunctionAuditExpression
(AuditFunction function, String otherAlias, String otherPropertyName, String op) SimpleFunctionAuditExpression
(AuditFunction function, Object value, String op)