The system resolves whether the particular char row is lowercase. The Character. isLowerCase(char ch) java process determines if the specific character is a lowercase disposition. A value is lowercase if it's an all-purpose category type, offered by Character. getType(ch), is LOWERCASE_LETTER, or it has contributory property Other_Lowercase as defined by the Unicode Standard.
boolean isLowerCase(char ch)
Here is the detail of parameters −
Example
public class Test { public static void main(String args[]) { System.out.println(Character.isLowerCase('c')); System.out.println(Character.isLowerCase('C')); System.out.println(Character.isLowerCase('\n')); System.out.println(Character.isLowerCase('\t')); } }
This will produce the following result:
true false false false
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.