Java Array to String arrayToString(final String[] values)

Here you can find the source of arrayToString(final String[] values)

Description

array To String

License

Open Source License

Declaration

public static final String arrayToString(final String[] values) 

Method Source Code

//package com.java2s;
/* *********************************************************************** *
 * project: org.matsim.*//from w  w  w .  java  2 s  .c o  m
 *                                                                         *
 * *********************************************************************** *
 *                                                                         *
 * copyright       : (C) 2010 by the members listed in the COPYING,        *
 *                   LICENSE and WARRANTY file.                            *
 * email           : info at matsim dot org                                *
 *                                                                         *
 * *********************************************************************** *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *   See also COPYING, LICENSE and WARRANTY file                           *
 *                                                                         *
 * *********************************************************************** */

public class Main {
    public static final String arrayToString(final String[] values) {
        boolean isFirst = true;
        StringBuilder str = new StringBuilder();
        for (String mode : values) {
            if (!isFirst) {
                str.append(',');
            }
            str.append(mode);
            isFirst = false;
        }
        return str.toString();
    }
}

Related

  1. arrayToString(final Object[] array)
  2. arrayToString(final Object[] array)
  3. arrayToString(final String[] args)
  4. arrayToString(final String[] strs)
  5. arrayToString(final String[] value)
  6. arrayToString(final T... data)
  7. arrayToString(final T[] array)
  8. arrayToString(float[] a)
  9. arrayToString(float[] arg)