Modifier and Type | Method and Description |
---|---|
static char |
flip(char c)
If the character is a letter or digit, apply the flip algorithm to it, otherwise leave it alone.
|
static boolean |
isDigit(char c)
Return true if the character is in the range 0-9
|
static boolean |
isLetter(char c)
Return true if the character is in the range A-Z or a-z
|
static boolean |
isLowerCase(char c)
Return true if the character is in the range a-z
|
static boolean |
isUpperCase(char c)
Return true if the character is in the range A-Z
|
public static boolean isLetter(char c)
public static boolean isDigit(char c)
public static boolean isLowerCase(char c)
public static boolean isUpperCase(char c)
public static char flip(char c)
If the character is a letter or digit, apply the flip algorithm to it, otherwise leave it alone.
The flip algorithm makes the character in the top row become the character in the bottom row, and vice versa.01234 abcdefghijklm ABCDEFGHIJKLM 56789 nopqrstuvwxyz NOPQRSTUVWXYZ
Copyright © 2010–2014 The Kuali Foundation. All rights reserved.