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

io.rocketbase.commons.email.template.styling.FontWeight Maven / Gradle / Ivy

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

import lombok.Getter;

public enum FontWeight {

    NORMAL("normal"),
    BOLD("bold"),
    LIGHTER("lighter");

    @Getter
    private String value;

    FontWeight(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy