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

io.cloudflight.structurizr.plantuml.StringUtils Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy