192193194195196197198
/** * Apply a "greater than" constraint to another property */ public AuditCriterion gtProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, ">" ); }
199200201202203204205
/** * Apply a "greater than or equal" constraint to another property */ public AuditCriterion geProperty(String otherPropertyName) { return new PropertyAuditExpression( propertyNameGetter, otherPropertyName, ">=" ); }