io.codearte.jfairy.producer.text.TextUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfairy Show documentation
Show all versions of jfairy Show documentation
jFairy - Java fake data generator
/*
* 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 - 2025 Weber Informatics LLC | Privacy Policy