where
223224225226227228229230
/** * Appends a normal <b>like</b> operation * @return Updated builder */ public WhereBuilder like() { this.where.add(new StringExpression(" like ")); return this; }
233234235236237238239240
* Appends a <b>not</b> operator * * @return Update builder */ public WhereBuilder not() { this.where.add(new StringExpression(" not ")); return this; }
242243244245246247248249
/** * Appends an <b>or</b> operator * @return Updated builder */ public WhereBuilder or() { this.where.add(new StringExpression(" or ")); return this; }