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

xyz.block.ftl.deployment.CommentKey Maven / Gradle / Ivy

There is a newer version: 0.398.1
Show newest version
package xyz.block.ftl.deployment;

public class CommentKey {
    public static String ofVerb(String verb) {
        return "verb." + verb;
    }

    public static String ofData(String data) {
        return "data." + data;
    }

    public static String ofEnum(String enumName) {
        return "enum." + enumName;
    }

    public static String ofConfig(String config) {
        return "config." + config;
    }

    public static String ofSecret(String secret) {
        return "secret." + secret;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy