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 RowConstraintsBuilderRowConstraintsBuilder.create()Returns an instance of theRowConstraintsBuilder.static RowConstraintsBuilderRowConstraintsBuilder.create(double height) Accepts the constructor arguments ofRowConstraints(double)and returns an instance ofRowConstraintsBuilder.static RowConstraintsBuilderRowConstraintsBuilder.create(double minHeight, double prefHeight, double maxHeight) Accepts the constructor arguments ofRowConstraints(double, double, double)and returns an instance ofRowConstraintsBuilder.static RowConstraintsBuilderRowConstraintsBuilder.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 thesetFillHeightmethod on the instance being constructed.RowConstraintsBuilder.fillHeightPropertyApply(Consumer<BooleanProperty> op) Applies a function to thefillHeightPropertyof the instance being constructed.RowConstraintsBuilder.maxHeight(double value) A builder method that invokes thesetMaxHeightmethod on the instance being constructed.RowConstraintsBuilder.maxHeightPropertyApply(Consumer<DoubleProperty> op) Applies a function to themaxHeightPropertyof the instance being constructed.RowConstraintsBuilder.minHeight(double value) A builder method that invokes thesetMinHeightmethod on the instance being constructed.RowConstraintsBuilder.minHeightPropertyApply(Consumer<DoubleProperty> op) Applies a function to theminHeightPropertyof the instance being constructed.RowConstraintsBuilder.percentHeight(double value) A builder method that invokes thesetPercentHeightmethod on the instance being constructed.RowConstraintsBuilder.percentHeightPropertyApply(Consumer<DoubleProperty> op) Applies a function to thepercentHeightPropertyof the instance being constructed.RowConstraintsBuilder.prefHeight(double value) A builder method that invokes thesetPrefHeightmethod on the instance being constructed.RowConstraintsBuilder.prefHeightPropertyApply(Consumer<DoubleProperty> op) Applies a function to theprefHeightPropertyof the instance being constructed.RowConstraintsBuilder.valignment(VPos value) A builder method that invokes thesetValignmentmethod on the instance being constructed.RowConstraintsBuilder.valignmentPropertyApply(Consumer<ObjectProperty<VPos>> op) Applies a function to thevalignmentPropertyof the instance being constructed.A builder method that invokes thesetVgrowmethod on the instance being constructed.RowConstraintsBuilder.vgrowPropertyApply(Consumer<ObjectProperty<Priority>> op) Applies a function to thevgrowPropertyof the instance being constructed.