While implementing an event handler for a slider in JavaFX and FXML, I was not able to figure out what event type a slider fires. I searched the Javadoc and googled it, but finally solved it by trial-and-error: a mouse released event can track when the user has changed the value of the slider (my first guess was some kind of ValueChangeListener or ChangeListener like in swing).
Question: How can I know which event listener/handler goes with which control? If the API/Javadoc does not state that slider value changes preferably are handled by mouse events, where to look for that information?