Uses of Class
io.github.sosuisen.jfxbuilder.controls.ToggleGroupBuilder
Packages that use ToggleGroupBuilder
-
Uses of ToggleGroupBuilder in io.github.sosuisen.jfxbuilder.controls
Methods in io.github.sosuisen.jfxbuilder.controls that return ToggleGroupBuilderModifier and TypeMethodDescriptionfinal ToggleGroupBuilder
ToggleGroupBuilder.addToggles
(Collection<? extends Toggle> col) Calls theaddAll
method on the ObservableList returned by theToggleGroup#getToggles()
method.final ToggleGroupBuilder
ToggleGroupBuilder.addToggles
(Toggle... elements) Calls theaddAll
method on the ObservableList returned by theToggleGroup#getToggles()
method.ToggleGroupBuilder.apply
(Consumer<ToggleGroup> func) Applies a function to the ToggleGroup instance being constructed.static ToggleGroupBuilder
ToggleGroupBuilder.create()
Returns an instance of theToggleGroupBuilder
.ToggleGroupBuilder.selectedTogglePropertyApply
(Consumer<ReadOnlyObjectProperty<Toggle>> op) Applies a function to theselectedToggleProperty
of the instance being constructed.A builder method that invokes thesetUserData
method on the instance being constructed.static ToggleGroupBuilder
ToggleGroupBuilder.withToggles
(Collection<? extends Toggle> col) Creates an instance of the builder, then calls theaddAll
method on the ObservableList returned by theToggleGroup#getToggles()
method.static ToggleGroupBuilder
ToggleGroupBuilder.withToggles
(Toggle... elements) Creates an instance of the builder, then calls theaddAll
method on the ObservableList returned by theToggleGroup#getToggles()
method.