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 > >);
Is it possible to do that ?