Tente usar ExpressionList . Aqui está o exemplo, se as condições na
if statement
met, então a expressão será incluída na cláusula where. public static List<User> filterUsers(int user_no, String genre, String name){
com.avaje.ebean.ExpressionList expressionList = find.where().eq("user_no", user_no);
if(condition1)
expressionList.eq("genre", genre);
if(condition2)
expressionList.eq("name", name);
return expressionList.findList();
}