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

org.bitbucket.gkutiel.at.Chars Maven / Gradle / Ivy

There is a newer version: 3-RELEASE
Show newest version
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