Uses of Class
io.github.sosuisen.jfxbuilder.graphics.ColumnConstraintsBuilder
Packages that use ColumnConstraintsBuilder
-
Uses of ColumnConstraintsBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return ColumnConstraintsBuilderModifier and TypeMethodDescriptionColumnConstraintsBuilder.apply(Consumer<ColumnConstraints> func) Applies a function to the ColumnConstraints instance being constructed.static ColumnConstraintsBuilderColumnConstraintsBuilder.create()Returns an instance of theColumnConstraintsBuilder.static ColumnConstraintsBuilderColumnConstraintsBuilder.create(double width) Accepts the constructor arguments ofColumnConstraints(double)and returns an instance ofColumnConstraintsBuilder.static ColumnConstraintsBuilderColumnConstraintsBuilder.create(double minWidth, double prefWidth, double maxWidth) Accepts the constructor arguments ofColumnConstraints(double, double, double)and returns an instance ofColumnConstraintsBuilder.static ColumnConstraintsBuilderColumnConstraintsBuilder.create(double minWidth, double prefWidth, double maxWidth, Priority hgrow, HPos halignment, boolean fillWidth) Accepts the constructor arguments ofColumnConstraints(double, double, double, Priority, HPos, boolean)and returns an instance ofColumnConstraintsBuilder.ColumnConstraintsBuilder.fillWidth(boolean value) A builder method that invokes thesetFillWidthmethod on the instance being constructed.ColumnConstraintsBuilder.fillWidthPropertyApply(Consumer<BooleanProperty> op) Applies a function to thefillWidthPropertyof the instance being constructed.ColumnConstraintsBuilder.halignment(HPos value) A builder method that invokes thesetHalignmentmethod on the instance being constructed.ColumnConstraintsBuilder.halignmentPropertyApply(Consumer<ObjectProperty<HPos>> op) Applies a function to thehalignmentPropertyof the instance being constructed.A builder method that invokes thesetHgrowmethod on the instance being constructed.ColumnConstraintsBuilder.hgrowPropertyApply(Consumer<ObjectProperty<Priority>> op) Applies a function to thehgrowPropertyof the instance being constructed.ColumnConstraintsBuilder.maxWidth(double value) A builder method that invokes thesetMaxWidthmethod on the instance being constructed.ColumnConstraintsBuilder.maxWidthPropertyApply(Consumer<DoubleProperty> op) Applies a function to themaxWidthPropertyof the instance being constructed.ColumnConstraintsBuilder.minWidth(double value) A builder method that invokes thesetMinWidthmethod on the instance being constructed.ColumnConstraintsBuilder.minWidthPropertyApply(Consumer<DoubleProperty> op) Applies a function to theminWidthPropertyof the instance being constructed.ColumnConstraintsBuilder.percentWidth(double value) A builder method that invokes thesetPercentWidthmethod on the instance being constructed.ColumnConstraintsBuilder.percentWidthPropertyApply(Consumer<DoubleProperty> op) Applies a function to thepercentWidthPropertyof the instance being constructed.ColumnConstraintsBuilder.prefWidth(double value) A builder method that invokes thesetPrefWidthmethod on the instance being constructed.ColumnConstraintsBuilder.prefWidthPropertyApply(Consumer<DoubleProperty> op) Applies a function to theprefWidthPropertyof the instance being constructed.