coollection
coollection copied to clipboard
A cool way to manipulate collections in Java.
You can use in where or order, literal "Name" or "name" instead of "getName" for matching getName property
maybe a simple question, but I cannot make it work. Example: ``` java from(article).where( "customerNr", eq(custno) ) .and ("articlenumber_intern", startsWith(searchTerm)) .or ("articlenumber_extern", startsWith(searchTerm)) .all() ``` that way, coolection will only...
you may use field names instead of method names: class User { private String name; public String gerName() { return name; } } List filteredList = from(users).where("name", eq("test")).all();