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

io.codearte.jfairy.producer.text.TextUtils Maven / Gradle / Ivy

There is a newer version: 0.5.9
Show newest version
/*
 * Copyright (c) 2013. Codearte
 */
package io.codearte.jfairy.producer.text;

import java.util.List;

import static com.google.common.base.Joiner.on;

public final class TextUtils {

	private TextUtils() {
	}

	public static String joinWithSpace(List result) {
		return on(" ").join(result);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy