Problem #461 CORE JAVA PROGRAMMING

Write a Java method that checks whether all the characters in a given string are vowels (a, e,i,o,u) or not. Return true if each character in the string is a vowel, otherwise return false.

Your Solution