I have the following Set in Java:
Set< Set<String> > SetTemp = new HashSet< Set<String> >();
and I want to move its data to an ArrayList :
ArrayList< ArrayList< String > > List = new ArrayList< ArrayList< String > >);
Can this be done?
java arraylist list data-structures hashset
Ghadeer
source share