* @param filters the filters
* @return {@code true} if and only if all the filters return {@code true},
* {@code false} otherwise.
*/
public static Selector.Filter and(Selector.Filter... filters) {
Selector.Filter and = new AndFilter(filters);
return and;
}