how to check whether a character is alphabet or not in java

how to check whether a character is alphabet or not in java
// determine whether a character is alphabet

private (static) boolean isAlphabet(char c) {
    return (c >= 'a' && c <= 'z') ||
           (c >= 'A' && c <= 'Z');
}
Source:ww‮‬w.lautturi.com
Created Time:2017-09-10 11:39:16  Author:lautturi