Uses of Class
io.github.sosuisen.jfxbuilder.graphics.RowConstraintsBuilder
Packages that use RowConstraintsBuilder
-
Uses of RowConstraintsBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return RowConstraintsBuilderModifier and TypeMethodDescriptionRowConstraintsBuilder.apply
(Consumer<RowConstraints> func) Applies a function to the RowConstraints instance being constructed.static RowConstraintsBuilder
RowConstraintsBuilder.create()
Returns an instance of theRowConstraintsBuilder
.static RowConstraintsBuilder
RowConstraintsBuilder.create
(double height) Accepts the constructor arguments ofRowConstraints(double)
and returns an instance ofRowConstraintsBuilder
.static RowConstraintsBuilder
RowConstraintsBuilder.create
(double minHeight, double prefHeight, double maxHeight) Accepts the constructor arguments ofRowConstraints(double, double, double)
and returns an instance ofRowConstraintsBuilder
.static RowConstraintsBuilder
RowConstraintsBuilder.create
(double minHeight, double prefHeight, double maxHeight, Priority vgrow, VPos valignment, boolean fillHeight) Accepts the constructor arguments ofRowConstraints(double, double, double, Priority, VPos, boolean)
and returns an instance ofRowConstraintsBuilder
.RowConstraintsBuilder.fillHeight
(boolean value) A builder method that invokes thesetFillHeight
method on the instance being constructed.RowConstraintsBuilder.fillHeightPropertyApply
(Consumer<BooleanProperty> op) Applies a function to thefillHeightProperty
of the instance being constructed.RowConstraintsBuilder.maxHeight
(double value) A builder method that invokes thesetMaxHeight
method on the instance being constructed.RowConstraintsBuilder.maxHeightPropertyApply
(Consumer<DoubleProperty> op) Applies a function to themaxHeightProperty
of the instance being constructed.RowConstraintsBuilder.minHeight
(double value) A builder method that invokes thesetMinHeight
method on the instance being constructed.RowConstraintsBuilder.minHeightPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theminHeightProperty
of the instance being constructed.RowConstraintsBuilder.percentHeight
(double value) A builder method that invokes thesetPercentHeight
method on the instance being constructed.RowConstraintsBuilder.percentHeightPropertyApply
(Consumer<DoubleProperty> op) Applies a function to thepercentHeightProperty
of the instance being constructed.RowConstraintsBuilder.prefHeight
(double value) A builder method that invokes thesetPrefHeight
method on the instance being constructed.RowConstraintsBuilder.prefHeightPropertyApply
(Consumer<DoubleProperty> op) Applies a function to theprefHeightProperty
of the instance being constructed.RowConstraintsBuilder.valignment
(VPos value) A builder method that invokes thesetValignment
method on the instance being constructed.RowConstraintsBuilder.valignmentPropertyApply
(Consumer<ObjectProperty<VPos>> op) Applies a function to thevalignmentProperty
of the instance being constructed.A builder method that invokes thesetVgrow
method on the instance being constructed.RowConstraintsBuilder.vgrowPropertyApply
(Consumer<ObjectProperty<Priority>> op) Applies a function to thevgrowProperty
of the instance being constructed.