this.lhs = lhs; this.rhs = rhs; return this;
this.lhs = lhs; this.rhs = ArrayHelper.fillArray(rhs, lhs.length); return this;
Sets the op.paramop The op to set this.op = op; return this;
this.op = op; return this;
Sets the tableAlias.paramtableAlias The tableAlias to set this.tableAlias = tableAlias; return this;
this.tableAlias = tableAlias; return this;
StringBuffer buf = new StringBuffer( lhs.length * 10 ); for ( int i=0; i<lhs.length; i++ ) { buf.append(tableAlias) .append('.") .append( lhs[i] ) .append(op) .append( rhs[i] ); if (i<lhs.length-1) buf.append(" and "); } return buf.toString();