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

io.rocketbase.commons.email.template.TableWidthUnit Maven / Gradle / Ivy

The newest version!
package io.rocketbase.commons.email.template;

public enum TableWidthUnit {

    PIXEL(""), PERCENTAGE("%");

    private String html;

    TableWidthUnit(String html) {
        this.html = html;
    }

    public String getHtmlValue(Integer value) {
        if (value != null) {
            return String.valueOf(value) + html;
        }
        return "";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy