示例#1
0
 public GroupBuilder<T, E> ne(String theVar, String theOtherVar) {
   return filter(ValueExprFactory.ne(theVar, theOtherVar));
 }
示例#2
0
 public GroupBuilder<T, E> eq(String theVar, Value theValue) {
   return filter(ValueExprFactory.eq(theVar, theValue));
 }