Java Utililty Methods Is Latin String

List of utility methods to do Is Latin String

Description

The list of methods to do Is Latin String are organized into topic(s).

Method

booleanisLatinString(final String str)
is Latin String
try {
    return str.equals(new String(str.getBytes("ISO-8859-1"), "ISO-8859-1"));
} catch (final UnsupportedEncodingException e) {
    return false;