001package com.github.gwtbootstrap.datetimepicker.client.ui.base;
002
003/**
004 * @author Thomas Buckel (thomas@livewirelabs.com.au)
005 */
006public enum PickerPosition {
007
008    TOP_LEFT("top-left"),
009    TOP_RIGHT("top-right"),
010    BOTTOM_LEFT("bottom-left"),
011    BOTTOM_RIGHT("bottom-right");
012
013    private final String value;
014
015    private PickerPosition(String value) {
016        this.value = value;
017    }
018
019    public String getValue() {
020        return value;
021    }
022
023}