com.github.leeonky.interpreter.EscapeChars Maven / Gradle / Ivy
The newest version!
package com.github.leeonky.interpreter;
import java.util.HashMap;
public class EscapeChars extends HashMap {
public EscapeChars escape(String target, char c) {
put(target, c);
return this;
}
}