Java Unhift

List<String> nums = new ArrayList<>(Arrays.asList("one", "two", "three"));
nums.add(0, "zero");
Jaime Redondo