
net.sf.esfinge.querybuilder.mongodb.formaters.StartsParameterFormater Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querybuilder-mongodb Show documentation
Show all versions of querybuilder-mongodb Show documentation
The Esfinge QueryBuilder MongoDB is the persistence framework for Esfinge QueryBuilder using Mongo Database.
The newest version!
package net.sf.esfinge.querybuilder.mongodb.formaters;
import net.sf.esfinge.querybuilder.methodparser.formater.ParameterFormater;
public class StartsParameterFormater implements ParameterFormater {
@Override
public Object formatParameter(Object param) {
return param.toString()+".*";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy