Uses of Class
io.github.sosuisen.jfxbuilder.controls.CheckBoxTreeItemBuilder
Packages that use CheckBoxTreeItemBuilder
-
Uses of CheckBoxTreeItemBuilder in io.github.sosuisen.jfxbuilder.controls
Methods in io.github.sosuisen.jfxbuilder.controls that return CheckBoxTreeItemBuilderModifier and TypeMethodDescriptionfinal CheckBoxTreeItemBuilder<T>
CheckBoxTreeItemBuilder.addChildren
(Collection<? extends TreeItem<T>> col) Calls theaddAll
method on the ObservableList returned by theCheckBoxTreeItem#getChildren()
method.final CheckBoxTreeItemBuilder<T>
CheckBoxTreeItemBuilder.addChildren
(TreeItem<T>... elements) Calls theaddAll
method on the ObservableList returned by theCheckBoxTreeItem#getChildren()
method.CheckBoxTreeItemBuilder.apply
(Consumer<CheckBoxTreeItem<T>> func) Applies a function to the CheckBoxTreeItem instance being constructed.static <T> CheckBoxTreeItemBuilder<T>
CheckBoxTreeItemBuilder.create()
Returns an instance of theCheckBoxTreeItemBuilder<T>
.static <T> CheckBoxTreeItemBuilder<T>
CheckBoxTreeItemBuilder.create
(T value) Accepts the constructor arguments ofCheckBoxTreeItem(T)
and returns an instance ofCheckBoxTreeItemBuilder<T>
.static <T> CheckBoxTreeItemBuilder<T>
Accepts the constructor arguments ofCheckBoxTreeItem(T, Node)
and returns an instance ofCheckBoxTreeItemBuilder<T>
.static <T> CheckBoxTreeItemBuilder<T>
Accepts the constructor arguments ofCheckBoxTreeItem(T, Node, boolean)
and returns an instance ofCheckBoxTreeItemBuilder<T>
.static <T> CheckBoxTreeItemBuilder<T>
Accepts the constructor arguments ofCheckBoxTreeItem(T, Node, boolean, boolean)
and returns an instance ofCheckBoxTreeItemBuilder<T>
.CheckBoxTreeItemBuilder.expanded
(boolean value) A builder method that invokes thesetExpanded
method on the instance being constructed.CheckBoxTreeItemBuilder.expandedPropertyApply
(Consumer<BooleanProperty> op) Applies a function to theexpandedProperty
of the instance being constructed.A builder method that invokes thesetGraphic
method on the instance being constructed.CheckBoxTreeItemBuilder.graphicPropertyApply
(Consumer<ObjectProperty<Node>> op) Applies a function to thegraphicProperty
of the instance being constructed.CheckBoxTreeItemBuilder.independent
(boolean value) A builder method that invokes thesetIndependent
method on the instance being constructed.CheckBoxTreeItemBuilder.independentPropertyApply
(Consumer<BooleanProperty> op) Applies a function to theindependentProperty
of the instance being constructed.CheckBoxTreeItemBuilder.indeterminate
(boolean value) A builder method that invokes thesetIndeterminate
method on the instance being constructed.CheckBoxTreeItemBuilder.indeterminatePropertyApply
(Consumer<BooleanProperty> op) Applies a function to theindeterminateProperty
of the instance being constructed.CheckBoxTreeItemBuilder.leafPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theleafProperty
of the instance being constructed.CheckBoxTreeItemBuilder.parentPropertyApply
(Consumer<ReadOnlyObjectProperty<TreeItem<T>>> op) Applies a function to theparentProperty
of the instance being constructed.CheckBoxTreeItemBuilder.selected
(boolean value) A builder method that invokes thesetSelected
method on the instance being constructed.CheckBoxTreeItemBuilder.selectedPropertyApply
(Consumer<BooleanProperty> op) Applies a function to theselectedProperty
of the instance being constructed.A builder method that invokes thesetValue
method on the instance being constructed.CheckBoxTreeItemBuilder.valuePropertyApply
(Consumer<ObjectProperty<T>> op) Applies a function to thevalueProperty
of the instance being constructed.static <T> CheckBoxTreeItemBuilder<T>
CheckBoxTreeItemBuilder.withChildren
(Collection<? extends TreeItem<T>> col) Creates an instance of the builder, then calls theaddAll
method on the ObservableList returned by theCheckBoxTreeItem#getChildren()
method.static <T> CheckBoxTreeItemBuilder<T>
CheckBoxTreeItemBuilder.withChildren
(TreeItem<T>... elements) Creates an instance of the builder, then calls theaddAll
method on the ObservableList returned by theCheckBoxTreeItem#getChildren()
method.