Java Collection to String collectionToString(Collection set)

Here you can find the source of collectionToString(Collection set)

Description

collection To String

License

Mozilla Public License

Declaration

@SuppressWarnings("rawtypes")
    public static String collectionToString(Collection set) 

Method Source Code

//package com.java2s;
/*/*  w w w . ja v a 2 s  .c o m*/
The contents of this file are subject to the Mozilla Public License
Version 1.1 (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.mozilla.org/MPL/
    
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
License for the specific language governing rights and limitations
under the License.
    
The Original Code is OpenFAST.
    
The Initial Developer of the Original Code is The LaSalle Technology
Group, LLC.  Portions created by The LaSalle Technology Group, LLC
are Copyright (C) The LaSalle Technology Group, LLC. All Rights Reserved.
    
Contributor(s): Jacob Northey <jacob@lasalletech.com>
        Craig Otis <cotis@lasalletech.com>
 */

import java.util.Collection;

import java.util.Iterator;

public class Main {
    @SuppressWarnings("rawtypes")
    public static String collectionToString(Collection set) {
        return collectionToString(set, ",");
    }

    @SuppressWarnings("rawtypes")
    public static String collectionToString(Collection set, String sep) {
        StringBuffer buffer = new StringBuffer();
        Iterator iter = set.iterator();
        buffer.append("{");
        while (iter.hasNext()) {
            buffer.append(iter.next()).append(sep);
        }
        buffer.deleteCharAt(buffer.length() - sep.length());
        buffer.append("}");
        return buffer.toString();
    }
}

Related

  1. collectionToString(Collection c, String spilt)
  2. collectionToString(Collection col)
  3. collectionToString(Collection coll)
  4. collectionToString(Collection collection, String delim)
  5. collectionToString(Collection list, String split)
  6. collectionToString(Collection c)
  7. collectionToString(Collection collection, String delimiter)
  8. collectionToString(Collection collection, String seperator)
  9. collectionToString(Collection list, String delimiter)