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

org.valkyriercp.util.Alignment Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package org.valkyriercp.util;

import javax.swing.*;

public enum Alignment {
    LEFT(SwingConstants.LEFT, "left"),
    RIGHT(SwingConstants.RIGHT, "right")

    ;
    private Integer code;
    private String label;

    Alignment(Integer code, String label) {
        this.code = code;
        this.label = label;
    }

    public Integer getCode() {
        return code;
    }

    public String getLabel() {
        return label;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy