com.aerospike.jdbc.predicate.OperatorVarArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aerospike-jdbc Show documentation
Show all versions of aerospike-jdbc Show documentation
A JDBC driver for the Aerospike database
The newest version!
package com.aerospike.jdbc.predicate;
import com.aerospike.client.exp.Exp;
public enum OperatorVarArgs implements Operator {
IN(Exp::or);
private final VarArgsFunction func;
OperatorVarArgs(VarArgsFunction expFunc) {
this.func = expFunc;
}
@Override
public Exp exp(Exp... expressions) {
return func.apply(expressions);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy