First create a radio button , remove the style radio-button, and then add a style toggle-buttonlike
RadioButton radioButton=new RadioButton("Radio");
radioButton.getStyleClass().remove("radio-button");
radioButton.getStyleClass().add("toggle-button");
, .