public final class Ascii
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isUpperCase(char c)
Indicates whether
c is one of the twenty-six uppercase ASCII alphabetic characters
between 'A' and 'Z' inclusive. |
static java.lang.String |
toLowerCase(java.lang.String string)
Returns a copy of the input string in which all uppercase ASCII
characters have been converted to lowercase.
|
@Nonnull
public static java.lang.String toLowerCase(@Nonnull
java.lang.String string)
public static boolean isUpperCase(char c)
c is one of the twenty-six uppercase ASCII alphabetic characters
between 'A' and 'Z' inclusive. All others (including non-ASCII characters)
return false.