Language.EnglishLanguage 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 class EnglishLanguage extends Language{
public static final String LOWERCASE_LETTERS = "abcdefghijklmnopqrstuvwxyz";
public static final String UPPERCASE_LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
}