findSet

findSetはfindListに似ていますが、リストではなくセットを返すという点が異なります。

Set<Customer> customers =
  new QCustomer()
    .email.istartsWith("rob")
    .findSet();