Skip to content

Instantly share code, notes, and snippets.

@f1xmAn
Created February 18, 2017 23:13
Show Gist options
  • Save f1xmAn/4e6b61a5e20d61de51476354c9e68a67 to your computer and use it in GitHub Desktop.
Save f1xmAn/4e6b61a5e20d61de51476354c9e68a67 to your computer and use it in GitHub Desktop.
public interface PersonQueryBuilder extends QueryBuilder<Person> {
PersonQueryBuilder setCity(String city);
PersonQueryBuilder setGender(Gender gender);
PersonQueryBuilder unemployed();
PersonQueryBuilder setAge(AgeRange ageRange);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment