org.joo.libra.PredicateContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joo-libra Show documentation
Show all versions of joo-libra Show documentation
Java Predicate with SQL-like syntax support
package org.joo.libra;
public class PredicateContext {
private Object context;
public PredicateContext(Object context) {
this.context = context;
}
public Object getContext() {
return context;
}
}