So if you wanna get the messages you can do the following:
for (DataSnapshot child : dataSnapshot.getChildren()){
//child is each element in the finished list
Map message = (Map)child.getValue();
Message msg = new Message((String) message.getValue().get("message"),
(String) message.get("name"));
}