All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.esfinge.querybuilder.mongodb.formaters.StartsParameterFormater Maven / Gradle / Ivy

Go to download

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