How do I restore List.toString back to List data type in Java
for eg:
List<String> abc = new ArrayList<String>(List.of("Why", "this", "Question"));
String myStringValue = abc.toString();
System.out.println(myStringValue);
Output
[Why, this, Question]
What should be the best practice to restore the List from toString implementation?
List<String> restoredAbc = <??RestoreApi??> (myStringValue )