Java Program: Lambda expression for checking uppercase, lowercase, or mixedcase strings
Check if List of Strings are All Uppercase/Lowercase or Mixed
Write a Java program to implement a lambda expression to check if a list of strings are all uppercase or all lowercase or mixedcase.
Sample Solution:
Java Code:
Sample Output:
Array elements: [Java, JAVA, java] Is all uppercase? false Is all lowercase? false Is mixed case? true Array elements: [JAVA, PYTHON, ABC] Is all uppercase? true Is all lowercase? false Is mixed case? false Array elements: [java] Is all uppercase? false Is all lowercase? true Is mixed case? false
Explanation:
In the above exercise -
The main() method:
- Creates a list of strings named strings.
- Calls the checkCase method to perform case checks and prints the results.
The checkCase() method:
- Takes three parameters: the list of strings to check, a Predicate<String> to define the case check condition, and a Function<String, String> to convert the first string for comparison.
- Retrieves the first string from the list using strings.get(0) and assigns it to firstString.
- Apply the conversion function convertFunction to firstString and assign the result to convertedString.
- Use the stream() method in the strings list to create a stream of strings.
- Apply the allMatch intermediate operation on the stream and provide a lambda expression as the condition to check if all strings satisfy the given predicate checkFunction.
- Returns the result of the allMatch operation, which indicates whether all strings in the list pass the case check.
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Java program to implement a lambda expression that checks if every string in a list is uppercase using allMatch().
- Write a Java program to create a lambda that validates whether all strings in a list are lowercase and returns a boolean result.
- Write a Java program to implement a lambda expression that determines if a list of strings is mixed-case by comparing counts of uppercase and lowercase letters.
- Write a Java program to chain lambda expressions to group strings by their case type and then check for uniformity.
Live Demo:
Java Code Editor:
Improve this sample solution and post your code through Disqus
Java Lambda Exercises Previous: Calculate sum of prime numbers with lambda expression.
Java Lambda Exercises Next: Lambda expression to find average string length.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics