I am not fully sure what you wish to do but I'll guess that you want to store data that represents a person (name, height, weight, etc...). So you could write an object (call it say Person), that contains all those values as variables. From there you could a) add these to a TreeMap or b) add the to an ArrayList (the List would require the extra step up sorting after all is said and done, the TreeMap does this for you). Either way, in doing so you must implement the Comparable interface so you can order based upon height or weight. See
Object Ordering (The Java™ Tutorials > Collections > Interfaces)