net.yadaframework.raw.YadaRegexReplacer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadaweb Show documentation
Show all versions of yadaweb Show documentation
Some useful tasks for the Yada Framework
package net.yadaframework.raw;
public interface YadaRegexReplacer {
/**
* Performs replacing of the source
* @param source
* @return the replaces source
*/
String apply(String source);
}