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

stream.util.Keys Maven / Gradle / Ivy

There is a newer version: 0.9.10
Show newest version
package stream.util;

/**
 * @author Hendrik Blom
 * 
 */
public class Keys {

	public static String create(String sep, String... values) {
		StringBuilder b = new StringBuilder();
		int i = 0;
		for (String value : values) {
			i++;
			b.append(value);
			if (i < values.length)
				b.append(sep);
		}
		return b.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy