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

pl.fhframework.model.TextAlignEnum Maven / Gradle / Ivy

package pl.fhframework.model;

import lombok.Getter;

public enum TextAlignEnum {
    LEFT("LEFT"),
    RIGHT("RIGHT");

    TextAlignEnum(String align){
        this.align = align;
    }

    @Getter
    private String align;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy