Here you can find the source of toString(List extends Object> objects)
Parameter | Description |
---|---|
objects | the objects that shall be converted to strings |
public static List<String> toString(List<? extends Object> objects)
//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; } }