149150151152153154155
/** * Apply an "equal" constraint to another property */ public AuditCriterion eqProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, "=" ); }
156157158159160161162
/** * Apply a "not equal" constraint to another property */ public AuditCriterion neProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, "<>" ); }
163164165166167168169
/** * Apply a "less than" constraint to another property */ public AuditCriterion ltProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, "<" ); }
170171172173174175176
/** * Apply a "less than or equal" constraint to another property */ public AuditCriterion leProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, "<=" ); }
177178179180181182183
/** * Apply a "greater than" constraint to another property */ public AuditCriterion gtProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, ">" ); }
184185186187188189190
/** * Apply a "greater than or equal" constraint to another property */ public AuditCriterion geProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, ">=" ); }
164165166167168169170
171172173174175176177
178179180181182183184
185186187188189190191