Class WingsJooqUtil.CondBuilder

  • All Implemented Interfaces:

    
    public class WingsJooqUtil.CondBuilder
    
                        

    Friendly chained condition builder

    (1=1) and ((2=2 or 3=3) or (4=4 and 5=5))
    can be done by grp-end as follows
    (1=1).and()
    .grp()
       .grp(2=2).or(3=3).end()
           .and()
       .grp(4=4).or(5=5).end()
    .end()