io.rocketbase.commons.email.template.styling.FontWeight Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of email-template-builder Show documentation
Show all versions of email-template-builder Show documentation
let this service generate your custom html/text emails
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;
}
}