Java tutorial
//package com.java2s; // License as published by the Free Software Foundation; either import java.util.Arrays; import java.util.Collections; import java.util.List; public class Main { public static <T> List<T> unmodifiableList(T... array) { return Collections.unmodifiableList(Arrays.asList(array)); } }