jOOQ / jOOX

jOOX - The Power of jQuery Applied to W3C DOM Like JDBC, DOM is a powerful, yet very verbose low-level API to manipulate XML. The HTML DOM an be manipulated with the popular jQuery product, in JavaScript. Why don't we have jQuery in Java? jOOX is jQuery's XML parts, applied to Java.

Home Page:http://www.jooq.org/products

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Let Filter extend Predicate<Context>, Mapper extend Function<Context, E>, Content extend Function<Context, String>, Each extend Consumer<Context>

lukaseder opened this issue · comments

Our Filter type is just a JDK Predicate, which was offered with Java 6 support in mind. Now that Java 6 support is being dropped, we can let Filter extend Predicate, and replace all references to Filter by Predicate<? super Context> throughout the API.