public static WherePredicate equals(final String property, final Object value) {
return new WherePredicate(new BeanPropertyValueEqualsPredicate(property, value, true));
}
public static WherePredicate notEquals(final String property, final Object value) {
return new WherePredicate(new NotPredicate(//
new BeanPropertyValueEqualsPredicate(property, value, true)));
}