com.jwebmp.plugins.bs4.datetimepicker.options.BS4DateTimeWidgetPositions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-bootstrap4-date-time-picker Show documentation
Show all versions of jwebmp-bootstrap4-date-time-picker Show documentation
The JWebSwing implementation for Bootstrap Date Time Picker Tempus Dominus
The newest version!
package com.jwebmp.plugins.bs4.datetimepicker.options;
import com.fasterxml.jackson.annotation.JsonValue;
public enum BS4DateTimeWidgetPositions
{
auto,
left,
right,
top,
bottom;
@Override
@JsonValue
public String toString()
{
return name().toLowerCase();
}
}