Those weird @-things are what you get when you say System.out.println(entry).

That's because what println() does is call the toString() method of entry and print whatever it returns. Your...