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 theaddAllmethod on the ObservableList returned by theCheckBoxTreeItem#getChildren()method.final CheckBoxTreeItemBuilder<T> CheckBoxTreeItemBuilder.addChildren(TreeItem<T>... elements) Calls theaddAllmethod 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 thesetExpandedmethod on the instance being constructed.CheckBoxTreeItemBuilder.expandedPropertyApply(Consumer<BooleanProperty> op) Applies a function to theexpandedPropertyof the instance being constructed.A builder method that invokes thesetGraphicmethod on the instance being constructed.CheckBoxTreeItemBuilder.graphicPropertyApply(Consumer<ObjectProperty<Node>> op) Applies a function to thegraphicPropertyof the instance being constructed.CheckBoxTreeItemBuilder.independent(boolean value) A builder method that invokes thesetIndependentmethod on the instance being constructed.CheckBoxTreeItemBuilder.independentPropertyApply(Consumer<BooleanProperty> op) Applies a function to theindependentPropertyof the instance being constructed.CheckBoxTreeItemBuilder.indeterminate(boolean value) A builder method that invokes thesetIndeterminatemethod on the instance being constructed.CheckBoxTreeItemBuilder.indeterminatePropertyApply(Consumer<BooleanProperty> op) Applies a function to theindeterminatePropertyof the instance being constructed.CheckBoxTreeItemBuilder.leafPropertyApply(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theleafPropertyof the instance being constructed.CheckBoxTreeItemBuilder.parentPropertyApply(Consumer<ReadOnlyObjectProperty<TreeItem<T>>> op) Applies a function to theparentPropertyof the instance being constructed.CheckBoxTreeItemBuilder.selected(boolean value) A builder method that invokes thesetSelectedmethod on the instance being constructed.CheckBoxTreeItemBuilder.selectedPropertyApply(Consumer<BooleanProperty> op) Applies a function to theselectedPropertyof the instance being constructed.A builder method that invokes thesetValuemethod on the instance being constructed.CheckBoxTreeItemBuilder.valuePropertyApply(Consumer<ObjectProperty<T>> op) Applies a function to thevaluePropertyof the instance being constructed.static <T> CheckBoxTreeItemBuilder<T> CheckBoxTreeItemBuilder.withChildren(Collection<? extends TreeItem<T>> col) Creates an instance of the builder, then calls theaddAllmethod 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 theaddAllmethod on the ObservableList returned by theCheckBoxTreeItem#getChildren()method.