public enum MouseInputMode extends java.lang.Enum<MouseInputMode>
ControlNode
.Enum Constant and Description |
---|
HandledByBoth
Mouse events are sent to both the diagram view and the hosted control.
|
HandledByDiagram
Mouse input is processed by the
DiagramView . |
HandledByHostedControl
Mouse input is processed by the hosted control.
|
Modifier and Type | Method and Description |
---|---|
static MouseInputMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MouseInputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MouseInputMode HandledByDiagram
DiagramView
.public static final MouseInputMode HandledByHostedControl
public static final MouseInputMode HandledByBoth
public static MouseInputMode[] values()
for (MouseInputMode c : MouseInputMode.values()) System.out.println(c);
public static MouseInputMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null