Package | Description |
---|---|
com.teamdev.jxbrowser.ui |
The utility classes for the user interface (UI) related functionality.
|
com.teamdev.jxbrowser.ui.event |
The user interface events.
|
Modifier and Type | Method and Description |
---|---|
static MouseButton |
MouseButton.forNumber(int value) |
static MouseButton |
MouseButton.valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static MouseButton |
MouseButton.valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static MouseButton |
MouseButton.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MouseButton[] |
MouseButton.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static com.google.protobuf.Internal.EnumLiteMap<MouseButton> |
MouseButton.internalGetValueMap() |
Modifier and Type | Method and Description |
---|---|
default MouseButton |
MouseDragged.button()
Returns the button that is pressed during the move.
|
default MouseButton |
MousePressed.button()
Returns the pressed mouse button.
|
default MouseButton |
MouseReleased.button()
Returns the released mouse button.
|
Modifier and Type | Method and Description |
---|---|
MouseExited.Builder |
MouseExited.Builder.button(MouseButton mouseButton)
Sets the button that is pressed.
|
MouseDragged.Builder |
MouseDragged.Builder.button(MouseButton mouseButton)
Sets the button that is pressed during the move.
|
MousePressed.Builder |
MousePressed.Builder.button(MouseButton mouseButton)
Sets the button that is pressed.
|
MouseEntered.Builder |
MouseEntered.Builder.button(MouseButton mouseButton)
Sets the button that is pressed.
|
MouseReleased.Builder |
MouseReleased.Builder.button(MouseButton mouseButton)
Sets the button that is released.
|