17181920212223
public static <T> Query<T> from(Collection<T> collection) { return new Query<T>(collection); } public static Matcher eq(Object value) { return new Equals(value); }