So I am currently upgrading some old code which uses Vector
into ArrayList
and am unsure what to use to replace the old vector segment.
public Enumeration enumerateMapping() {
return mappingList.elements();
}
I need to replace the .elements()
with an ArrayList
equivalent. If anyone happens to know of a link with the translation for these that would be very helpful as well.