Java how to copy list

Java how to copy list
refer to:‮tual‬turi.com
/**
 * @author lautturi.com
 * Java example: how to clone list in java
 */

import java.util.*;

public class Lautturi {

	public static void main(String[] args) {

		List<String> orlautturinalList = Arrays.asList("hello","lautturi","java","python","world");
		List<Object> copyList = new ArrayList<>();
		copyList.addAll(orlautturinalList);
		
		System.out.println("Orlautturinal List"+orlautturinalList);
		System.out.println("Copy List"+copyList);

	}
}

output:

Orlautturinal List[hello, lautturi, java, python, world]
Copy List[hello, lautturi, java, python, world]
Created Time:2017-09-21 13:26:26  Author:lautturi