![JAR search and dependency download from the Maven repository](/logo.png)
org.bitbucket.gkutiel.at.Chars Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of at-core Show documentation
Show all versions of at-core Show documentation
A parser and renderer engine for the at syntax
package org.bitbucket.gkutiel.at;
public interface Chars {
static boolean isStopChar(final char ch) {
for (final char c : STOPS)
if (ch == c) return true;
return false;
}
static final char ESC = '`';
static final char AT = '@';
static final char S = '(';
static final char E = ')';
static final char[] STOPS = { AT, S, E };
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy