I have an object with a method who's job it is to compare itself with another method. I've defined a custom comparator inside this method to do the job.
The object has a property 'output' which is a Map<String, Map<String, Object>>, basically, I need to find a way to compare the values inside the second map with the other object's map values.
The problem I'm having it finding a way to suitably determine whether one object is greater than, less than or equal to another based on the map values. I know it's possible using a bunch of conditions, but that's just not the road I want to go down.
An example of the Map<String, Map<String, Object>> property value is:

P.S The values of the map will always be numeric.
EDIT:
Thanks for the responses.
In the end I decided to go down the Classes route. Instead of having a Map<String, Map<String, Object>> property I had a List<SystemInformation>, which included a Map<String, Object> property which stored the key/value pairs.
I created separate classes for memory, process and file descriptor information respectively and had them subclass the SystemInformation class. I implemented the Comparable interface on the SystemInformation class to compare the properties of two SystemInformation objects.
Then I used a very simple weighing algorithm to decide a sort order for separate Reports, by use of a custom Comparator.
Cheers.
Maps. They should be classes. – Louis Wasserman Aug 9 '12 at 11:30