Jacob Champlin supplied the request for ... and code to support query by example.
MinCustomer example = new MinCustomer(); example.setName("Rob%"); example.setNotes("%something%"); List<MinCustomer> list = Ebean.find(MinCustomer.class) .where() .exampleLike(example) .gt("id", 2) .findList();
select c.id, c.name, c.notes from o_customer c where (c.name like ? and c.notes like ? ) and c.id > ?