bot.model.query.Regex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot Show documentation
Show all versions of telegram-bot Show documentation
Library to create Telegram Bots in Java
The newest version!
package bot.model.query;
/**
* Created by Luca Mosetti on 2017
*
* REGEXes which Parsers and Builders have to use
*/
public interface Regex {
String REGEX = "\n";
String TWO_DOTS = ":";
String COMMAND = "cmd";
}