So, while looking through others code ive been seeing things like such as in the following code:
List myList = new ArrayList<String>(Arrays.asList(s.split(" ")));
What exactly does this do? I haven't been able to find any documentation, in part by the reason that I don't really know what it is called. And if possible an explanation of what exactly they do?