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

cn.bestwu.lang.keyword.replace.ReplaceStrategy Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package cn.bestwu.lang.keyword.replace;

/**
 * 关键字替换策略
 *
 * @author Peter Wu
 */
public interface ReplaceStrategy {

  /**
   * 将关键字替换为期望的结果字符串
   *
   * @param words 匹配到的关键字
   * @return The resulting String
   */
  char[] replaceWith(char[] words);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy