I have a LinkedHashMap<String, ArrayList<String>>.
By default, all of the values are populated with a " " and there are three keys
I want to check if any of the values for any of the three keys is not equal to a " ".
This is what I have done so far ` boolean checkMapContent(LinkedHashMap> Map) {
    for (Map.Entry<String, ArrayList<String>> entry : Map.entrySet())
     {
        String key = entry.getKey();
        ArrayList<String> labelValue = entry.getValue();
        for (String entry1 : labelValue)
        {
            if (!entry1.equals(" ")) 
            {
                return false;
            }
        }
     }
    return true;
}`
 
     
    