Lecture 22
15
class Character
•Wrapper class for primitive type char
•Static methods to process char values
•Use Character to save  char in a Collection
•Character(char ch) // constructor
•public char charValue()
•static int getNumericValue(char ch) // unicode value
•static boolean isDigit(char ch)
•static char toUpperCase(char ch)
•… see API for more