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

org.richfaces.component.Positioning Maven / Gradle / Ivy

package org.richfaces.component;

/**
 * @author amarkhel
 */
public enum Positioning {
    auto("AA"),
    topLeft("LT"),
    topRight("RT"),
    bottomLeft("LB"),
    bottomRight("RB"),
    autoLeft("LA"),
    autoRight("RA"),
    topAuto("AT"),
    bottomAuto("AB");
    public static final Positioning DEFAULT = auto;
    String value;

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

    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy