Java Comma Separated List getCommaSeparatedList(List list)

Here you can find the source of getCommaSeparatedList(List list)

Description

Returns a string containing every element of the given list, with each element separated by a comma.

License

Apache License

Parameter

Parameter Description
list List of all elements

Return

String containing every element, comma-separated

Declaration

private static String getCommaSeparatedList(List list) 

Method Source Code

//package com.java2s;
/*/*from w ww  .j  a  va 2s.c  om*/
 * 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.List;

public class Main {
    /**
     * Returns a string containing every element of the given list, with each
     * element separated by a comma.
     *
     * @param list List of all elements
     * @return String containing every element, comma-separated
     */
    private static String getCommaSeparatedList(List list) {
        StringBuilder buffer = new StringBuilder();
        String separator = "";
        for (Object e : list) {
            buffer.append(separator).append(e);
            separator = ",";
        }
        return buffer.toString();
    }
}

Related

  1. getCommaList(List V)
  2. getCommandLine(List command)
  3. getCommandLineOptionInt(List args, String param, int defaultValue)
  4. getCommandStr(List commandList)
  5. getCommaSeparatedList(Collection stringValues)
  6. getCommaSeparatedList(List list)
  7. getCommaSeparatedListOfString( Collection list)
  8. getCommaSeparatedValue(List> enumList)
  9. getCommaSeparatedValues(List values)