com.vaadin.terminal.gwt.client.ui.dd
Enum VDragAndDropManager.DragEventType
java.lang.Object
java.lang.Enum<VDragAndDropManager.DragEventType>
com.vaadin.terminal.gwt.client.ui.dd.VDragAndDropManager.DragEventType
- All Implemented Interfaces:
- Serializable, Comparable<VDragAndDropManager.DragEventType>
- Enclosing class:
- VDragAndDropManager
public static enum VDragAndDropManager.DragEventType
- extends Enum<VDragAndDropManager.DragEventType>
ENTER
public static final VDragAndDropManager.DragEventType ENTER
LEAVE
public static final VDragAndDropManager.DragEventType LEAVE
OVER
public static final VDragAndDropManager.DragEventType OVER
DROP
public static final VDragAndDropManager.DragEventType DROP
values
public static final VDragAndDropManager.DragEventType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(VDragAndDropManager.DragEventType c : VDragAndDropManager.DragEventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static VDragAndDropManager.DragEventType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.