Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*  2010 Stephan Reichholf <stephan at reichholf dot net>
 * 
 * Licensed under the Create-Commons Attribution-Noncommercial-Share Alike 3.0 Unported
 * http://creativecommons.org/licenses/by-nc-sa/3.0/
 */

import java.util.ArrayList;

public class Main {
    public static ArrayList<String> toStringArrayList(CharSequence[] strings) {
        ArrayList<String> list = new ArrayList<>();
        for (CharSequence string : strings) {
            list.add(string.toString());
        }
        return list;
    }
}