Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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));
    }
}