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

com.github.gwtbootstrap.datetimepicker.client.ui.base.PickerPosition Maven / Gradle / Ivy

package com.github.gwtbootstrap.datetimepicker.client.ui.base;

/**
 * @author Thomas Buckel ([email protected])
 */
public enum PickerPosition {

    TOP_LEFT("top-left"),
    TOP_RIGHT("top-right"),
    BOTTOM_LEFT("bottom-left"),
    BOTTOM_RIGHT("bottom-right");

    private final String value;

    private PickerPosition(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy