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

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

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

import lombok.Getter;

public enum FontStyle {

    NORMAL("normal"),
    ITALIC("italic"),
    OBLIQUE("oblique");

    @Getter
    private String value;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy