tech.deplant.java4ever.utils.regex.Symbol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java4ever-utils Show documentation
Show all versions of java4ever-utils Show documentation
Development framework for Everscale DApp development
package tech.deplant.java4ever.utils.regex;
public record Symbol(char symbol) implements RegExpBuilder {
@Override
public String build() {
String str = String.valueOf(symbol());
if (RESERVED_SYMBOLS.contains(str)) {
str = String.format("\\%s", str);
}
return str;
}
}