![JAR search and dependency download from the Maven repository](/logo.png)
Language.Language Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Dictionary Show documentation
Show all versions of Dictionary Show documentation
Dictionary processing library
The newest version!
package Language;
public abstract class Language {
/**
* Digits : 0123456789
* Arithmetic Characters : +-/=\*
* Extended Language Characters
* Black dot : ●
*/
public static final String DIGITS = "0123456789";
public static final String ARITHMETIC_CHARACTERS = "+-*/=";
public static final String EXTENDED_LANGUAGE_CHARACTERS = "âàáäãèéêëíîòóôûúqwxÂÈÉÊËÌÒÛQWX●";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy