coollection icon indicating copy to clipboard operation
coollection copied to clipboard

field based filtering

Open firatkucuk opened this issue 14 years ago • 0 comments

you may use field names instead of method names:

class User { private String name;

public String gerName() { return name; } }

List<User> filteredList = from(users).where("name", eq("test")).all();

firatkucuk avatar Dec 21 '11 18:12 firatkucuk