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

studio.kdb.config.KdbMessageLimitAction Maven / Gradle / Ivy

package studio.kdb.config;

public enum KdbMessageLimitAction {
    ASK("show dialog to download"),
    BLOCK("close session (do not download)");

    private final String description;

    KdbMessageLimitAction(String description) {
        this.description = description;
    }

    @Override
    public String toString() {
        return description;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy