Java List to String toString(List objects)

Here you can find the source of toString(List objects)

Description

this method converts any List to a list of strings.

License

Open Source License

Parameter

Parameter Description
objects the objects that shall be converted to strings

Return

the list of strings

Declaration

public static List<String> toString(List<? extends Object> objects) 

Method Source Code

//package com.java2s;
/*******************************************************************************
*
* This file is part of JMad.//from w  w  w .j  av a 2  s.co  m
* 
* Copyright (c) 2008-2011, CERN. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* 
******************************************************************************/

import java.util.ArrayList;
import java.util.List;

public class Main {
    /**
     * this method converts any List to a list of strings.
     * 
     * @param objects the objects that shall be converted to strings
     * @return the list of strings
     */
    public static List<String> toString(List<? extends Object> objects) {
        List<String> strings = new ArrayList<String>();
        for (Object object : objects) {
            strings.add(object.toString());
        }
        return strings;
    }
}

Related

  1. toString(final Object[] list)
  2. toString(List arguments)
  3. toString(List l)
  4. toString(List list)
  5. toString(List list)
  6. toString(List col)
  7. toString(List coll, char delimiter)
  8. toString(List list)
  9. toString(List list)