My map looks like this :
LinkedHashMap <LinkedHashMap <String,String>,LinkedHashMap <String,String>> leftRightWords
Where the first map contains left words of a proper noun and second map contains right words of a proper noun. E.g. in :
"Following the Rhode Island solution provider Atrion's decision to sell"
map1 will have entries like:
Rhode Island, Following the
Atrion, solution provider
map2 will have entries like:
Rhode Island, solution provider
Atrion, decision to sell
In both maps the keys are the same but the values differ based on left and right words. How do i iterate over this map to extract the left words and right words to analyze them?