
io.gs2.cdk.core.func.Join Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-cdk Show documentation
Show all versions of gs2-java-cdk Show documentation
Game Server Services CDK for Java
The newest version!
package io.gs2.cdk.core.func;
import java.util.List;
public class Join implements Func {
String separator;
List values;
public Join(
String separator,
List values
) {
this.separator = separator;
this.values = values;
}
public String str() {
return "!Join ['" + this.separator + "', [" + String.join(",", this.values) + "]]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy