I'm working on a java project and i want to create a list of Maps that the type of keys is Character and the values are ArrayLists of Characters. I have written something like this :
List<Map<Character, ArrayList<Character>>>
but the eclipse says : Syntax error on token ">>>", VariableDeclarator expected after this token
How can i do it ? any idea ?

List<Map<Character, ArrayList<Character>>>I'd write some classes representing your data. After all, Java is an OOP language. You'll get self describing and easy to maintain code. Right now, your heading into a mess.List<Map<Character, ArrayList<Character>>>?