io.cloudflight.structurizr.plantuml.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structurizr-export-c4plantuml Show documentation
Show all versions of structurizr-export-c4plantuml Show documentation
Extension of the Structurizr Export Library
The newest version!
package io.cloudflight.structurizr.plantuml;
public class StringUtils {
private StringUtils() {
}
public static String quote(String value) {
if (value == null) {
return null;
}
return String.format("\"%s\"", value);
}
}