I am stumped with this one and hoping to see if this could be a good way to solve my issue.
I'll first explain how the program works.
I have a class that is simply a key value pair:
public class KeyValuePair {
private final String name;
private final String value;
public KeyValuePair(String n, String v) {
name = n;
value = v;
}
I have another class called List that uses the key value pair.
public class myList {
private List<KeyValuePair> myList = new ArrayList<KeyValuePair>();
public myList(List<KeyValuePair> nvp) {
List = nvp;
}
public List<KeyValuePair> getList() {
return myList;
}
}
So in my program i then create an List object and populate it with the key value pairs and review a new List(kvp).
public myList pullData(){
Final myList<KeyValuePair> nvp = new ArrayList<KeyValuePair>();
List<String[]> results = getResults()
for(String[] str : results)
{
KeyValuePair kvp = new KeyValuePair(str[0], str[1]);
nvp.add(kvp)
}
}
return new myList(nvp)
}
now I have run into the situation where I need to update the value of each pair. The key stays the same.
Originally I had created a newList object and populated with the updated Value for the key pair, but then though there should be a better method, perhaps creating an update or a setter method within the List object to do this.
Which would be better creating a new object, or updating? I would think updating the value in the key value pair, however, I am not sure how to do this.
Any help or suggestions would be greatly appreciated.
Then you can set the keys and values if you want:
However a list of these is never going to be as useful as a map that is already there in Java.