Introduction
isTitleCase(int codePoint)
is a method in the Java Character
class. It checks whether the specified Unicode codepoint character is a Titlecase character or not. This method supports supplementary characters. A character is a title case character if its general category type, provided by Character.getType(ch)
, is TITLECASE_LETTER
.