All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.common.CSVUtil Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.common;

import java.util.Arrays;
import java.util.Collection;

public final class CSVUtil {

	private CSVUtil() {
	}

	public static String toCSV(Object... objects) {
		return toCSV(Arrays.asList(objects));
	}

	public static String toCSV(Collection objects) {
		String out = "";
		for (Object object : objects) {
			if (out != "") {
				out += "; ";
			}
			out += object;
		}
		return out;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy