I have class called Items with some data as below:
class Items {
public String item1 ;
public String item2;
public int item3;
}
I have another Java class that sets values for this Items class as below:
Items tempItems1 = new Items();
tempItems1 .item1 = "a";
tempItems1 .item2 = "b";
tempItems1 .item3 = 1;
Items tempItems2 = new Items();
tempItems2 .item1 = "aa";
tempItems2 .item2 = "bb";
tempItems2 .item3 = 11;
Now the problem is I need to add these both objects (tempItems1,tempItems2) to HashTable in such a way I can traverse through the HashTable to get values for this.
I created HashTable as below, but not able to find a way in which I can add each of the above Java object and traverse through it.
HashTable<String,Items> custom = new HashTable<String,Items>();
Can any one help me in sorting out this issue ?
custom.put("someString", items1);? – assylias Dec 13 '12 at 18:22HashMapbut you are not talking about any key used to retrieve the data. Are you sure you need aMap? maybe you need aSet? or a normalList? – Jack Dec 13 '12 at 18:22