com.github.fluorumlabs.disconnect.vaadin.constants.DropLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-vaadin Show documentation
Show all versions of disconnect-vaadin Show documentation
Vaadin components bindings for Disconnect Zero
The newest version!
package com.github.fluorumlabs.disconnect.vaadin.constants;
import js.extras.JsEnum;
/**
* Created by Artem Godin on 2/4/2020.
*/
public abstract class DropLocation extends JsEnum {
public static final DropLocation ON_TOP = JsEnum.of("on-top");
public static final DropLocation ABOVE = JsEnum.of("above");
public static final DropLocation BELOW = JsEnum.of("below");
public static final DropLocation EMPTY = JsEnum.of("empty");
}