Class EllipseBuilder
EllipseBuilder class constructs instances of the Ellipse class
and offers a fluent interface for creating and configuring it.
This class includes a static create method that accepts the same arguments as the original Ellipse constructor
and returns an instance of the EllipseBuilder.
You can use method chaining to call the builder methods for configuring the Ellipse.
Finally, invoke the build method to generate an instance of the Ellipse class.
Note that intermediate builder methods are not evaluated until the build method
is called, meaning they are evaluated lazily.
- Author:
- Hidekazu Kubota <hidekazu.kubota@gmail.com>
-
Method Summary
Modifier and TypeMethodDescriptionaccessibleHelp(String value) A builder method that invokes thesetAccessibleHelpmethod on the instance being constructed.Applies a function to theaccessibleHelpPropertyof the instance being constructed.accessibleRole(AccessibleRole value) A builder method that invokes thesetAccessibleRolemethod on the instance being constructed.accessibleRoleDescription(String value) A builder method that invokes thesetAccessibleRoleDescriptionmethod on the instance being constructed.Applies a function to theaccessibleRoleDescriptionPropertyof the instance being constructed.Applies a function to theaccessibleRolePropertyof the instance being constructed.accessibleText(String value) A builder method that invokes thesetAccessibleTextmethod on the instance being constructed.Applies a function to theaccessibleTextPropertyof the instance being constructed.final EllipseBuilderaddStrokeDashArray(Double... elements) Calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.final EllipseBuilderaddStrokeDashArray(Collection<? extends Double> col) Calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.final EllipseBuilderaddStyleClass(String... elements) Calls theaddAllmethod on the ObservableList returned by theEllipse#getStyleClass()method.final EllipseBuilderaddStyleClass(Collection<? extends String> col) Calls theaddAllmethod on the ObservableList returned by theEllipse#getStyleClass()method.final EllipseBuilderaddTransforms(Collection<? extends Transform> col) Calls theaddAllmethod on the ObservableList returned by theEllipse#getTransforms()method.final EllipseBuilderaddTransforms(Transform... elements) Calls theaddAllmethod on the ObservableList returned by theEllipse#getTransforms()method.alignmentInBorderPane(Pos value) Invokes theBorderPane.setAlignment(Node, Pos)using a fluent API.alignmentInStackPane(Pos value) Invokes theStackPane.setAlignment(Node, Pos)using a fluent API.alignmentInTilePane(Pos value) Invokes theTilePane.setAlignment(Node, Pos)using a fluent API.Applies a function to the Ellipse instance being constructed.A builder method that invokes thesetBlendModemethod on the instance being constructed.Applies a function to theblendModePropertyof the instance being constructed.bottomAnchorInAnchorPane(Double value) Invokes theAnchorPane.setBottomAnchor(Node, Double)using a fluent API.Applies a function to theboundsInLocalPropertyof the instance being constructed.Applies a function to theboundsInParentPropertyof the instance being constructed.build()Builds and returns an instance of theEllipseclass.cache(boolean value) A builder method that invokes thesetCachemethod on the instance being constructed.A builder method that invokes thesetCacheHintmethod on the instance being constructed.Applies a function to thecacheHintPropertyof the instance being constructed.Applies a function to thecachePropertyof the instance being constructed.centerX(double value) A builder method that invokes thesetCenterXmethod on the instance being constructed.Applies a function to thecenterXPropertyof the instance being constructed.centerY(double value) A builder method that invokes thesetCenterYmethod on the instance being constructed.Applies a function to thecenterYPropertyof the instance being constructed.A builder method that invokes thesetClipmethod on the instance being constructed.Applies a function to theclipPropertyof the instance being constructed.columnIndexInGridPane(Integer value) Invokes theGridPane.setColumnIndex(Node, Integer)using a fluent API.columnSpanInGridPane(Integer value) Invokes theGridPane.setColumnSpan(Node, Integer)using a fluent API.constraintsInGridPane(int columnIndex, int rowIndex) Invokes theGridPane.setConstraints(Node, int, int)using a fluent API.constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan) Invokes theGridPane.setConstraints(Node, int, int, int, int)using a fluent API.constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment) Invokes theGridPane.setConstraints(Node, int, int, int, int, HPos, VPos)using a fluent API.constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow) Invokes theGridPane.setConstraints(Node, int, int, int, int, HPos, VPos, Priority, Priority)using a fluent API.constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow, Insets margin) Invokes theGridPane.setConstraints(Node, int, int, int, int, HPos, VPos, Priority, Priority, Insets)using a fluent API.static EllipseBuildercreate()Returns an instance of theEllipseBuilder.static EllipseBuildercreate(double radiusX, double radiusY) Accepts the constructor arguments ofEllipse(double, double)and returns an instance ofEllipseBuilder.static EllipseBuildercreate(double centerX, double centerY, double radiusX, double radiusY) Accepts the constructor arguments ofEllipse(double, double, double, double)and returns an instance ofEllipseBuilder.A builder method that invokes thesetCursormethod on the instance being constructed.Applies a function to thecursorPropertyof the instance being constructed.A builder method that invokes thesetDepthTestmethod on the instance being constructed.Applies a function to thedepthTestPropertyof the instance being constructed.disable(boolean value) A builder method that invokes thesetDisablemethod on the instance being constructed.Applies a function to thedisabledPropertyof the instance being constructed.Applies a function to thedisablePropertyof the instance being constructed.A builder method that invokes thesetEffectmethod on the instance being constructed.Applies a function to theeffectiveNodeOrientationPropertyof the instance being constructed.Applies a function to theeffectPropertyof the instance being constructed.eventDispatcher(EventDispatcher value) A builder method that invokes thesetEventDispatchermethod on the instance being constructed.Applies a function to theeventDispatcherPropertyof the instance being constructed.A builder method that invokes thesetFillmethod on the instance being constructed.fillHeightInGridPane(Boolean value) Invokes theGridPane.setFillHeight(Node, Boolean)using a fluent API.Applies a function to thefillPropertyof the instance being constructed.fillWidthInGridPane(Boolean value) Invokes theGridPane.setFillWidth(Node, Boolean)using a fluent API.Applies a function to thefocusedPropertyof the instance being constructed.focusTraversable(boolean value) A builder method that invokes thesetFocusTraversablemethod on the instance being constructed.Applies a function to thefocusTraversablePropertyof the instance being constructed.hAlignmentInGridPane(HPos value) Invokes theGridPane.setHalignment(Node, HPos)using a fluent API.hGrowInGridPane(Priority value) Invokes theGridPane.setHgrow(Node, Priority)using a fluent API.hGrowInHBox(Priority value) Invokes theHBox.setHgrow(Node, Priority)using a fluent API.Applies a function to thehoverPropertyof the instance being constructed.A builder method that invokes thesetIdmethod on the instance being constructed.Applies a function to theidPropertyof the instance being constructed.A builder method that invokes thesetInputMethodRequestsmethod on the instance being constructed.Applies a function to theinputMethodRequestsPropertyof the instance being constructed.Applies a function to thelayoutBoundsPropertyof the instance being constructed.layoutX(double value) A builder method that invokes thesetLayoutXmethod on the instance being constructed.Applies a function to thelayoutXPropertyof the instance being constructed.layoutY(double value) A builder method that invokes thesetLayoutYmethod on the instance being constructed.Applies a function to thelayoutYPropertyof the instance being constructed.leftAnchorInAnchorPane(Double value) Invokes theAnchorPane.setLeftAnchor(Node, Double)using a fluent API.Applies a function to thelocalToParentTransformPropertyof the instance being constructed.Applies a function to thelocalToSceneTransformPropertyof the instance being constructed.managed(boolean value) A builder method that invokes thesetManagedmethod on the instance being constructed.Applies a function to themanagedPropertyof the instance being constructed.marginInBorderPane(Insets value) Invokes theBorderPane.setMargin(Node, Insets)using a fluent API.marginInFlowPane(Insets value) Invokes theFlowPane.setMargin(Node, Insets)using a fluent API.marginInGridPane(Insets value) Invokes theGridPane.setMargin(Node, Insets)using a fluent API.marginInHBox(Insets value) Invokes theHBox.setMargin(Node, Insets)using a fluent API.marginInStackPane(Insets value) Invokes theStackPane.setMargin(Node, Insets)using a fluent API.marginInTilePane(Insets value) Invokes theTilePane.setMargin(Node, Insets)using a fluent API.marginInVBox(Insets value) Invokes theVBox.setMargin(Node, Insets)using a fluent API.mouseTransparent(boolean value) A builder method that invokes thesetMouseTransparentmethod on the instance being constructed.Applies a function to themouseTransparentPropertyof the instance being constructed.nodeOrientation(NodeOrientation orientation) A builder method that invokes thesetNodeOrientationmethod on the instance being constructed.Applies a function to thenodeOrientationPropertyof the instance being constructed.onContextMenuRequested(EventHandler<? super ContextMenuEvent> value) A builder method that invokes thesetOnContextMenuRequestedmethod on the instance being constructed.onContextMenuRequestedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ContextMenuEvent>>> op) Applies a function to theonContextMenuRequestedPropertyof the instance being constructed.onDragDetected(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnDragDetectedmethod on the instance being constructed.onDragDetectedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonDragDetectedPropertyof the instance being constructed.onDragDone(EventHandler<? super DragEvent> value) A builder method that invokes thesetOnDragDonemethod on the instance being constructed.onDragDonePropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragDonePropertyof the instance being constructed.onDragDropped(EventHandler<? super DragEvent> value) A builder method that invokes thesetOnDragDroppedmethod on the instance being constructed.onDragDroppedPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragDroppedPropertyof the instance being constructed.onDragEntered(EventHandler<? super DragEvent> value) A builder method that invokes thesetOnDragEnteredmethod on the instance being constructed.onDragEnteredPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragEnteredPropertyof the instance being constructed.onDragExited(EventHandler<? super DragEvent> value) A builder method that invokes thesetOnDragExitedmethod on the instance being constructed.onDragExitedPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragExitedPropertyof the instance being constructed.onDragOver(EventHandler<? super DragEvent> value) A builder method that invokes thesetOnDragOvermethod on the instance being constructed.onDragOverPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragOverPropertyof the instance being constructed.onInputMethodTextChanged(EventHandler<? super InputMethodEvent> value) A builder method that invokes thesetOnInputMethodTextChangedmethod on the instance being constructed.onInputMethodTextChangedPropertyApply(Consumer<ObjectProperty<EventHandler<? super InputMethodEvent>>> op) Applies a function to theonInputMethodTextChangedPropertyof the instance being constructed.onKeyPressed(EventHandler<? super KeyEvent> value) A builder method that invokes thesetOnKeyPressedmethod on the instance being constructed.onKeyPressedPropertyApply(Consumer<ObjectProperty<EventHandler<? super KeyEvent>>> op) Applies a function to theonKeyPressedPropertyof the instance being constructed.onKeyReleased(EventHandler<? super KeyEvent> value) A builder method that invokes thesetOnKeyReleasedmethod on the instance being constructed.onKeyReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super KeyEvent>>> op) Applies a function to theonKeyReleasedPropertyof the instance being constructed.onKeyTyped(EventHandler<? super KeyEvent> value) A builder method that invokes thesetOnKeyTypedmethod on the instance being constructed.onKeyTypedPropertyApply(Consumer<ObjectProperty<EventHandler<? super KeyEvent>>> op) Applies a function to theonKeyTypedPropertyof the instance being constructed.onMouseClicked(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMouseClickedmethod on the instance being constructed.onMouseClickedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseClickedPropertyof the instance being constructed.onMouseDragEntered(EventHandler<? super MouseDragEvent> value) A builder method that invokes thesetOnMouseDragEnteredmethod on the instance being constructed.Applies a function to theonMouseDragEnteredPropertyof the instance being constructed.onMouseDragExited(EventHandler<? super MouseDragEvent> value) A builder method that invokes thesetOnMouseDragExitedmethod on the instance being constructed.Applies a function to theonMouseDragExitedPropertyof the instance being constructed.onMouseDragged(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMouseDraggedmethod on the instance being constructed.onMouseDraggedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseDraggedPropertyof the instance being constructed.onMouseDragOver(EventHandler<? super MouseDragEvent> value) A builder method that invokes thesetOnMouseDragOvermethod on the instance being constructed.onMouseDragOverPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseDragEvent>>> op) Applies a function to theonMouseDragOverPropertyof the instance being constructed.onMouseDragReleased(EventHandler<? super MouseDragEvent> value) A builder method that invokes thesetOnMouseDragReleasedmethod on the instance being constructed.Applies a function to theonMouseDragReleasedPropertyof the instance being constructed.onMouseEntered(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMouseEnteredmethod on the instance being constructed.onMouseEnteredPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseEnteredPropertyof the instance being constructed.onMouseExited(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMouseExitedmethod on the instance being constructed.onMouseExitedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseExitedPropertyof the instance being constructed.onMouseMoved(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMouseMovedmethod on the instance being constructed.onMouseMovedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseMovedPropertyof the instance being constructed.onMousePressed(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMousePressedmethod on the instance being constructed.onMousePressedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMousePressedPropertyof the instance being constructed.onMouseReleased(EventHandler<? super MouseEvent> value) A builder method that invokes thesetOnMouseReleasedmethod on the instance being constructed.onMouseReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseReleasedPropertyof the instance being constructed.onRotate(EventHandler<? super RotateEvent> value) A builder method that invokes thesetOnRotatemethod on the instance being constructed.onRotatePropertyApply(Consumer<ObjectProperty<EventHandler<? super RotateEvent>>> op) Applies a function to theonRotatePropertyof the instance being constructed.onRotationFinished(EventHandler<? super RotateEvent> value) A builder method that invokes thesetOnRotationFinishedmethod on the instance being constructed.onRotationFinishedPropertyApply(Consumer<ObjectProperty<EventHandler<? super RotateEvent>>> op) Applies a function to theonRotationFinishedPropertyof the instance being constructed.onRotationStarted(EventHandler<? super RotateEvent> value) A builder method that invokes thesetOnRotationStartedmethod on the instance being constructed.onRotationStartedPropertyApply(Consumer<ObjectProperty<EventHandler<? super RotateEvent>>> op) Applies a function to theonRotationStartedPropertyof the instance being constructed.onScroll(EventHandler<? super ScrollEvent> value) A builder method that invokes thesetOnScrollmethod on the instance being constructed.onScrollFinished(EventHandler<? super ScrollEvent> value) A builder method that invokes thesetOnScrollFinishedmethod on the instance being constructed.onScrollFinishedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ScrollEvent>>> op) Applies a function to theonScrollFinishedPropertyof the instance being constructed.onScrollPropertyApply(Consumer<ObjectProperty<EventHandler<? super ScrollEvent>>> op) Applies a function to theonScrollPropertyof the instance being constructed.onScrollStarted(EventHandler<? super ScrollEvent> value) A builder method that invokes thesetOnScrollStartedmethod on the instance being constructed.onScrollStartedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ScrollEvent>>> op) Applies a function to theonScrollStartedPropertyof the instance being constructed.onSwipeDown(EventHandler<? super SwipeEvent> value) A builder method that invokes thesetOnSwipeDownmethod on the instance being constructed.onSwipeDownPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeDownPropertyof the instance being constructed.onSwipeLeft(EventHandler<? super SwipeEvent> value) A builder method that invokes thesetOnSwipeLeftmethod on the instance being constructed.onSwipeLeftPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeLeftPropertyof the instance being constructed.onSwipeRight(EventHandler<? super SwipeEvent> value) A builder method that invokes thesetOnSwipeRightmethod on the instance being constructed.onSwipeRightPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeRightPropertyof the instance being constructed.onSwipeUp(EventHandler<? super SwipeEvent> value) A builder method that invokes thesetOnSwipeUpmethod on the instance being constructed.onSwipeUpPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeUpPropertyof the instance being constructed.onTouchMoved(EventHandler<? super TouchEvent> value) A builder method that invokes thesetOnTouchMovedmethod on the instance being constructed.onTouchMovedPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchMovedPropertyof the instance being constructed.onTouchPressed(EventHandler<? super TouchEvent> value) A builder method that invokes thesetOnTouchPressedmethod on the instance being constructed.onTouchPressedPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchPressedPropertyof the instance being constructed.onTouchReleased(EventHandler<? super TouchEvent> value) A builder method that invokes thesetOnTouchReleasedmethod on the instance being constructed.onTouchReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchReleasedPropertyof the instance being constructed.onTouchStationary(EventHandler<? super TouchEvent> value) A builder method that invokes thesetOnTouchStationarymethod on the instance being constructed.onTouchStationaryPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchStationaryPropertyof the instance being constructed.onZoom(EventHandler<? super ZoomEvent> value) A builder method that invokes thesetOnZoommethod on the instance being constructed.onZoomFinished(EventHandler<? super ZoomEvent> value) A builder method that invokes thesetOnZoomFinishedmethod on the instance being constructed.onZoomFinishedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ZoomEvent>>> op) Applies a function to theonZoomFinishedPropertyof the instance being constructed.onZoomPropertyApply(Consumer<ObjectProperty<EventHandler<? super ZoomEvent>>> op) Applies a function to theonZoomPropertyof the instance being constructed.onZoomStarted(EventHandler<? super ZoomEvent> value) A builder method that invokes thesetOnZoomStartedmethod on the instance being constructed.onZoomStartedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ZoomEvent>>> op) Applies a function to theonZoomStartedPropertyof the instance being constructed.opacity(double value) A builder method that invokes thesetOpacitymethod on the instance being constructed.Applies a function to theopacityPropertyof the instance being constructed.Applies a function to theparentPropertyof the instance being constructed.pickOnBounds(boolean value) A builder method that invokes thesetPickOnBoundsmethod on the instance being constructed.Applies a function to thepickOnBoundsPropertyof the instance being constructed.Applies a function to thepressedPropertyof the instance being constructed.radiusX(double value) A builder method that invokes thesetRadiusXmethod on the instance being constructed.Applies a function to theradiusXPropertyof the instance being constructed.radiusY(double value) A builder method that invokes thesetRadiusYmethod on the instance being constructed.Applies a function to theradiusYPropertyof the instance being constructed.rightAnchorInAnchorPane(Double value) Invokes theAnchorPane.setRightAnchor(Node, Double)using a fluent API.rotate(double value) A builder method that invokes thesetRotatemethod on the instance being constructed.Applies a function to therotatePropertyof the instance being constructed.rotationAxis(Point3D value) A builder method that invokes thesetRotationAxismethod on the instance being constructed.Applies a function to therotationAxisPropertyof the instance being constructed.rowIndexInGridPane(Integer value) Invokes theGridPane.setRowIndex(Node, Integer)using a fluent API.rowSpanInGridPane(Integer value) Invokes theGridPane.setRowSpan(Node, Integer)using a fluent API.scaleX(double value) A builder method that invokes thesetScaleXmethod on the instance being constructed.Applies a function to thescaleXPropertyof the instance being constructed.scaleY(double value) A builder method that invokes thesetScaleYmethod on the instance being constructed.Applies a function to thescaleYPropertyof the instance being constructed.scaleZ(double value) A builder method that invokes thesetScaleZmethod on the instance being constructed.Applies a function to thescaleZPropertyof the instance being constructed.Applies a function to thescenePropertyof the instance being constructed.smooth(boolean value) A builder method that invokes thesetSmoothmethod on the instance being constructed.Applies a function to thesmoothPropertyof the instance being constructed.A builder method that invokes thesetStrokemethod on the instance being constructed.strokeDashOffset(double value) A builder method that invokes thesetStrokeDashOffsetmethod on the instance being constructed.Applies a function to thestrokeDashOffsetPropertyof the instance being constructed.strokeLineCap(StrokeLineCap value) A builder method that invokes thesetStrokeLineCapmethod on the instance being constructed.Applies a function to thestrokeLineCapPropertyof the instance being constructed.strokeLineJoin(StrokeLineJoin value) A builder method that invokes thesetStrokeLineJoinmethod on the instance being constructed.Applies a function to thestrokeLineJoinPropertyof the instance being constructed.strokeMiterLimit(double value) A builder method that invokes thesetStrokeMiterLimitmethod on the instance being constructed.Applies a function to thestrokeMiterLimitPropertyof the instance being constructed.Applies a function to thestrokePropertyof the instance being constructed.strokeType(StrokeType value) A builder method that invokes thesetStrokeTypemethod on the instance being constructed.Applies a function to thestrokeTypePropertyof the instance being constructed.strokeWidth(double value) A builder method that invokes thesetStrokeWidthmethod on the instance being constructed.Applies a function to thestrokeWidthPropertyof the instance being constructed.A builder method that invokes thesetStylemethod on the instance being constructed.Applies a function to thestylePropertyof the instance being constructed.topAnchorInAnchorPane(Double value) Invokes theAnchorPane.setTopAnchor(Node, Double)using a fluent API.translateX(double value) A builder method that invokes thesetTranslateXmethod on the instance being constructed.Applies a function to thetranslateXPropertyof the instance being constructed.translateY(double value) A builder method that invokes thesetTranslateYmethod on the instance being constructed.Applies a function to thetranslateYPropertyof the instance being constructed.translateZ(double value) A builder method that invokes thesetTranslateZmethod on the instance being constructed.Applies a function to thetranslateZPropertyof the instance being constructed.A builder method that invokes thesetUserDatamethod on the instance being constructed.vAlignmentInGridPane(VPos value) Invokes theGridPane.setValignment(Node, VPos)using a fluent API.vGrowInGridPane(Priority value) Invokes theGridPane.setVgrow(Node, Priority)using a fluent API.vGrowInVBox(Priority value) Invokes theVBox.setVgrow(Node, Priority)using a fluent API.viewOrder(double value) A builder method that invokes thesetViewOrdermethod on the instance being constructed.Applies a function to theviewOrderPropertyof the instance being constructed.visible(boolean value) A builder method that invokes thesetVisiblemethod on the instance being constructed.Applies a function to thevisiblePropertyof the instance being constructed.static EllipseBuilderwithStrokeDashArray(Double... elements) Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.static EllipseBuilderwithStrokeDashArray(Collection<? extends Double> col) Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.
-
Method Details
-
create
Returns an instance of theEllipseBuilder.- Returns:
- an instance of the
EllipseBuilder.
-
create
Accepts the constructor arguments ofEllipse(double, double)and returns an instance ofEllipseBuilder.- Returns:
- an instance of the
EllipseBuilder.
-
create
Accepts the constructor arguments ofEllipse(double, double, double, double)and returns an instance ofEllipseBuilder.- Returns:
- an instance of the
EllipseBuilder.
-
build
-
apply
Applies a function to the Ellipse instance being constructed. Most operations on the instance can be performed using this method.Example usage:
apply(ellipse -> ellipse.setId("Main" + ellipse.getTypeSelector()))- Returns:
- builder instance
-
accessibleHelp
A builder method that invokes thesetAccessibleHelpmethod on the instance being constructed.- Returns:
- builder instance
-
accessibleRole
A builder method that invokes thesetAccessibleRolemethod on the instance being constructed.- Returns:
- builder instance
-
accessibleRoleDescription
A builder method that invokes thesetAccessibleRoleDescriptionmethod on the instance being constructed.- Returns:
- builder instance
-
accessibleText
A builder method that invokes thesetAccessibleTextmethod on the instance being constructed.- Returns:
- builder instance
-
blendMode
A builder method that invokes thesetBlendModemethod on the instance being constructed.- Returns:
- builder instance
-
cache
A builder method that invokes thesetCachemethod on the instance being constructed.- Returns:
- builder instance
-
cacheHint
A builder method that invokes thesetCacheHintmethod on the instance being constructed.- Returns:
- builder instance
-
centerX
A builder method that invokes thesetCenterXmethod on the instance being constructed.- Returns:
- builder instance
-
centerY
A builder method that invokes thesetCenterYmethod on the instance being constructed.- Returns:
- builder instance
-
clip
A builder method that invokes thesetClipmethod on the instance being constructed.- Returns:
- builder instance
-
cursor
A builder method that invokes thesetCursormethod on the instance being constructed.- Returns:
- builder instance
-
depthTest
A builder method that invokes thesetDepthTestmethod on the instance being constructed.- Returns:
- builder instance
-
disable
A builder method that invokes thesetDisablemethod on the instance being constructed.- Returns:
- builder instance
-
effect
A builder method that invokes thesetEffectmethod on the instance being constructed.- Returns:
- builder instance
-
eventDispatcher
A builder method that invokes thesetEventDispatchermethod on the instance being constructed.- Returns:
- builder instance
-
fill
A builder method that invokes thesetFillmethod on the instance being constructed.- Returns:
- builder instance
-
focusTraversable
A builder method that invokes thesetFocusTraversablemethod on the instance being constructed.- Returns:
- builder instance
-
id
A builder method that invokes thesetIdmethod on the instance being constructed.- Returns:
- builder instance
-
inputMethodRequests
A builder method that invokes thesetInputMethodRequestsmethod on the instance being constructed.- Returns:
- builder instance
-
layoutX
A builder method that invokes thesetLayoutXmethod on the instance being constructed.- Returns:
- builder instance
-
layoutY
A builder method that invokes thesetLayoutYmethod on the instance being constructed.- Returns:
- builder instance
-
managed
A builder method that invokes thesetManagedmethod on the instance being constructed.- Returns:
- builder instance
-
mouseTransparent
A builder method that invokes thesetMouseTransparentmethod on the instance being constructed.- Returns:
- builder instance
-
nodeOrientation
A builder method that invokes thesetNodeOrientationmethod on the instance being constructed.- Returns:
- builder instance
-
onContextMenuRequested
A builder method that invokes thesetOnContextMenuRequestedmethod on the instance being constructed.- Returns:
- builder instance
-
onDragDetected
A builder method that invokes thesetOnDragDetectedmethod on the instance being constructed.- Returns:
- builder instance
-
onDragDone
A builder method that invokes thesetOnDragDonemethod on the instance being constructed.- Returns:
- builder instance
-
onDragDropped
A builder method that invokes thesetOnDragDroppedmethod on the instance being constructed.- Returns:
- builder instance
-
onDragEntered
A builder method that invokes thesetOnDragEnteredmethod on the instance being constructed.- Returns:
- builder instance
-
onDragExited
A builder method that invokes thesetOnDragExitedmethod on the instance being constructed.- Returns:
- builder instance
-
onDragOver
A builder method that invokes thesetOnDragOvermethod on the instance being constructed.- Returns:
- builder instance
-
onInputMethodTextChanged
A builder method that invokes thesetOnInputMethodTextChangedmethod on the instance being constructed.- Returns:
- builder instance
-
onKeyPressed
A builder method that invokes thesetOnKeyPressedmethod on the instance being constructed.- Returns:
- builder instance
-
onKeyReleased
A builder method that invokes thesetOnKeyReleasedmethod on the instance being constructed.- Returns:
- builder instance
-
onKeyTyped
A builder method that invokes thesetOnKeyTypedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseClicked
A builder method that invokes thesetOnMouseClickedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseDragEntered
A builder method that invokes thesetOnMouseDragEnteredmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseDragExited
A builder method that invokes thesetOnMouseDragExitedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseDragOver
A builder method that invokes thesetOnMouseDragOvermethod on the instance being constructed.- Returns:
- builder instance
-
onMouseDragReleased
A builder method that invokes thesetOnMouseDragReleasedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseDragged
A builder method that invokes thesetOnMouseDraggedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseEntered
A builder method that invokes thesetOnMouseEnteredmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseExited
A builder method that invokes thesetOnMouseExitedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseMoved
A builder method that invokes thesetOnMouseMovedmethod on the instance being constructed.- Returns:
- builder instance
-
onMousePressed
A builder method that invokes thesetOnMousePressedmethod on the instance being constructed.- Returns:
- builder instance
-
onMouseReleased
A builder method that invokes thesetOnMouseReleasedmethod on the instance being constructed.- Returns:
- builder instance
-
onRotate
A builder method that invokes thesetOnRotatemethod on the instance being constructed.- Returns:
- builder instance
-
onRotationFinished
A builder method that invokes thesetOnRotationFinishedmethod on the instance being constructed.- Returns:
- builder instance
-
onRotationStarted
A builder method that invokes thesetOnRotationStartedmethod on the instance being constructed.- Returns:
- builder instance
-
onScroll
A builder method that invokes thesetOnScrollmethod on the instance being constructed.- Returns:
- builder instance
-
onScrollFinished
A builder method that invokes thesetOnScrollFinishedmethod on the instance being constructed.- Returns:
- builder instance
-
onScrollStarted
A builder method that invokes thesetOnScrollStartedmethod on the instance being constructed.- Returns:
- builder instance
-
onSwipeDown
A builder method that invokes thesetOnSwipeDownmethod on the instance being constructed.- Returns:
- builder instance
-
onSwipeLeft
A builder method that invokes thesetOnSwipeLeftmethod on the instance being constructed.- Returns:
- builder instance
-
onSwipeRight
A builder method that invokes thesetOnSwipeRightmethod on the instance being constructed.- Returns:
- builder instance
-
onSwipeUp
A builder method that invokes thesetOnSwipeUpmethod on the instance being constructed.- Returns:
- builder instance
-
onTouchMoved
A builder method that invokes thesetOnTouchMovedmethod on the instance being constructed.- Returns:
- builder instance
-
onTouchPressed
A builder method that invokes thesetOnTouchPressedmethod on the instance being constructed.- Returns:
- builder instance
-
onTouchReleased
A builder method that invokes thesetOnTouchReleasedmethod on the instance being constructed.- Returns:
- builder instance
-
onTouchStationary
A builder method that invokes thesetOnTouchStationarymethod on the instance being constructed.- Returns:
- builder instance
-
onZoom
A builder method that invokes thesetOnZoommethod on the instance being constructed.- Returns:
- builder instance
-
onZoomFinished
A builder method that invokes thesetOnZoomFinishedmethod on the instance being constructed.- Returns:
- builder instance
-
onZoomStarted
A builder method that invokes thesetOnZoomStartedmethod on the instance being constructed.- Returns:
- builder instance
-
opacity
A builder method that invokes thesetOpacitymethod on the instance being constructed.- Returns:
- builder instance
-
pickOnBounds
A builder method that invokes thesetPickOnBoundsmethod on the instance being constructed.- Returns:
- builder instance
-
radiusX
A builder method that invokes thesetRadiusXmethod on the instance being constructed.- Returns:
- builder instance
-
radiusY
A builder method that invokes thesetRadiusYmethod on the instance being constructed.- Returns:
- builder instance
-
rotate
A builder method that invokes thesetRotatemethod on the instance being constructed.- Returns:
- builder instance
-
rotationAxis
A builder method that invokes thesetRotationAxismethod on the instance being constructed.- Returns:
- builder instance
-
scaleX
A builder method that invokes thesetScaleXmethod on the instance being constructed.- Returns:
- builder instance
-
scaleY
A builder method that invokes thesetScaleYmethod on the instance being constructed.- Returns:
- builder instance
-
scaleZ
A builder method that invokes thesetScaleZmethod on the instance being constructed.- Returns:
- builder instance
-
smooth
A builder method that invokes thesetSmoothmethod on the instance being constructed.- Returns:
- builder instance
-
stroke
A builder method that invokes thesetStrokemethod on the instance being constructed.- Returns:
- builder instance
-
strokeDashOffset
A builder method that invokes thesetStrokeDashOffsetmethod on the instance being constructed.- Returns:
- builder instance
-
strokeLineCap
A builder method that invokes thesetStrokeLineCapmethod on the instance being constructed.- Returns:
- builder instance
-
strokeLineJoin
A builder method that invokes thesetStrokeLineJoinmethod on the instance being constructed.- Returns:
- builder instance
-
strokeMiterLimit
A builder method that invokes thesetStrokeMiterLimitmethod on the instance being constructed.- Returns:
- builder instance
-
strokeType
A builder method that invokes thesetStrokeTypemethod on the instance being constructed.- Returns:
- builder instance
-
strokeWidth
A builder method that invokes thesetStrokeWidthmethod on the instance being constructed.- Returns:
- builder instance
-
style
A builder method that invokes thesetStylemethod on the instance being constructed.- Returns:
- builder instance
-
translateX
A builder method that invokes thesetTranslateXmethod on the instance being constructed.- Returns:
- builder instance
-
translateY
A builder method that invokes thesetTranslateYmethod on the instance being constructed.- Returns:
- builder instance
-
translateZ
A builder method that invokes thesetTranslateZmethod on the instance being constructed.- Returns:
- builder instance
-
userData
A builder method that invokes thesetUserDatamethod on the instance being constructed.- Returns:
- builder instance
-
viewOrder
A builder method that invokes thesetViewOrdermethod on the instance being constructed.- Returns:
- builder instance
-
visible
A builder method that invokes thesetVisiblemethod on the instance being constructed.- Returns:
- builder instance
-
addStrokeDashArray
Calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.- Returns:
- builder instance
-
addStrokeDashArray
Calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.- Returns:
- builder instance
-
withStrokeDashArray
Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.- Returns:
- builder instance
-
withStrokeDashArray
Creates an instance of the builder, then calls theaddAllmethod on the ObservableList returned by theEllipse#getStrokeDashArray()method.- Returns:
- builder instance
-
addStyleClass
Calls theaddAllmethod on the ObservableList returned by theEllipse#getStyleClass()method.- Returns:
- builder instance
-
addStyleClass
Calls theaddAllmethod on the ObservableList returned by theEllipse#getStyleClass()method.- Returns:
- builder instance
-
addTransforms
Calls theaddAllmethod on the ObservableList returned by theEllipse#getTransforms()method.- Returns:
- builder instance
-
addTransforms
Calls theaddAllmethod on the ObservableList returned by theEllipse#getTransforms()method.- Returns:
- builder instance
-
accessibleHelpPropertyApply
Applies a function to theaccessibleHelpPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.accessibleHelpProperty().bind(anotherProperty)) // Use shorthand form .accessibleHelpPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
accessibleRoleDescriptionPropertyApply
Applies a function to theaccessibleRoleDescriptionPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.accessibleRoleDescriptionProperty().bind(anotherProperty)) // Use shorthand form .accessibleRoleDescriptionPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
accessibleRolePropertyApply
Applies a function to theaccessibleRolePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.accessibleRoleProperty().bind(anotherProperty)) // Use shorthand form .accessibleRolePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
accessibleTextPropertyApply
Applies a function to theaccessibleTextPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.accessibleTextProperty().bind(anotherProperty)) // Use shorthand form .accessibleTextPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
blendModePropertyApply
Applies a function to theblendModePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.blendModeProperty().bind(anotherProperty)) // Use shorthand form .blendModePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
boundsInLocalPropertyApply
Applies a function to theboundsInLocalPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.boundsInLocalProperty().bind(anotherProperty)) // Use shorthand form .boundsInLocalPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
boundsInParentPropertyApply
Applies a function to theboundsInParentPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.boundsInParentProperty().bind(anotherProperty)) // Use shorthand form .boundsInParentPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
cacheHintPropertyApply
Applies a function to thecacheHintPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.cacheHintProperty().bind(anotherProperty)) // Use shorthand form .cacheHintPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
cachePropertyApply
Applies a function to thecachePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.cacheProperty().bind(anotherProperty)) // Use shorthand form .cachePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
centerXPropertyApply
Applies a function to thecenterXPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.centerXProperty().bind(anotherProperty)) // Use shorthand form .centerXPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
centerYPropertyApply
Applies a function to thecenterYPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.centerYProperty().bind(anotherProperty)) // Use shorthand form .centerYPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
clipPropertyApply
Applies a function to theclipPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.clipProperty().bind(anotherProperty)) // Use shorthand form .clipPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
cursorPropertyApply
Applies a function to thecursorPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.cursorProperty().bind(anotherProperty)) // Use shorthand form .cursorPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
depthTestPropertyApply
Applies a function to thedepthTestPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.depthTestProperty().bind(anotherProperty)) // Use shorthand form .depthTestPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
disablePropertyApply
Applies a function to thedisablePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.disableProperty().bind(anotherProperty)) // Use shorthand form .disablePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
disabledPropertyApply
Applies a function to thedisabledPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.disabledProperty().bind(anotherProperty)) // Use shorthand form .disabledPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
effectPropertyApply
Applies a function to theeffectPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.effectProperty().bind(anotherProperty)) // Use shorthand form .effectPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
effectiveNodeOrientationPropertyApply
public EllipseBuilder effectiveNodeOrientationPropertyApply(Consumer<ReadOnlyObjectProperty<NodeOrientation>> op) Applies a function to theeffectiveNodeOrientationPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.effectiveNodeOrientationProperty().bind(anotherProperty)) // Use shorthand form .effectiveNodeOrientationPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
eventDispatcherPropertyApply
Applies a function to theeventDispatcherPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.eventDispatcherProperty().bind(anotherProperty)) // Use shorthand form .eventDispatcherPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
fillPropertyApply
Applies a function to thefillPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.fillProperty().bind(anotherProperty)) // Use shorthand form .fillPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
focusTraversablePropertyApply
Applies a function to thefocusTraversablePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.focusTraversableProperty().bind(anotherProperty)) // Use shorthand form .focusTraversablePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
focusedPropertyApply
Applies a function to thefocusedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.focusedProperty().bind(anotherProperty)) // Use shorthand form .focusedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
hoverPropertyApply
Applies a function to thehoverPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.hoverProperty().bind(anotherProperty)) // Use shorthand form .hoverPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
idPropertyApply
Applies a function to theidPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.idProperty().bind(anotherProperty)) // Use shorthand form .idPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
inputMethodRequestsPropertyApply
public EllipseBuilder inputMethodRequestsPropertyApply(Consumer<ObjectProperty<InputMethodRequests>> op) Applies a function to theinputMethodRequestsPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.inputMethodRequestsProperty().bind(anotherProperty)) // Use shorthand form .inputMethodRequestsPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
layoutBoundsPropertyApply
Applies a function to thelayoutBoundsPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.layoutBoundsProperty().bind(anotherProperty)) // Use shorthand form .layoutBoundsPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
layoutXPropertyApply
Applies a function to thelayoutXPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.layoutXProperty().bind(anotherProperty)) // Use shorthand form .layoutXPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
layoutYPropertyApply
Applies a function to thelayoutYPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.layoutYProperty().bind(anotherProperty)) // Use shorthand form .layoutYPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
localToParentTransformPropertyApply
public EllipseBuilder localToParentTransformPropertyApply(Consumer<ReadOnlyObjectProperty<Transform>> op) Applies a function to thelocalToParentTransformPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.localToParentTransformProperty().bind(anotherProperty)) // Use shorthand form .localToParentTransformPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
localToSceneTransformPropertyApply
public EllipseBuilder localToSceneTransformPropertyApply(Consumer<ReadOnlyObjectProperty<Transform>> op) Applies a function to thelocalToSceneTransformPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.localToSceneTransformProperty().bind(anotherProperty)) // Use shorthand form .localToSceneTransformPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
managedPropertyApply
Applies a function to themanagedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.managedProperty().bind(anotherProperty)) // Use shorthand form .managedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
mouseTransparentPropertyApply
Applies a function to themouseTransparentPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.mouseTransparentProperty().bind(anotherProperty)) // Use shorthand form .mouseTransparentPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
nodeOrientationPropertyApply
Applies a function to thenodeOrientationPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.nodeOrientationProperty().bind(anotherProperty)) // Use shorthand form .nodeOrientationPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onContextMenuRequestedPropertyApply
public EllipseBuilder onContextMenuRequestedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ContextMenuEvent>>> op) Applies a function to theonContextMenuRequestedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onContextMenuRequestedProperty().bind(anotherProperty)) // Use shorthand form .onContextMenuRequestedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onDragDetectedPropertyApply
public EllipseBuilder onDragDetectedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonDragDetectedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onDragDetectedProperty().bind(anotherProperty)) // Use shorthand form .onDragDetectedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onDragDonePropertyApply
public EllipseBuilder onDragDonePropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragDonePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onDragDoneProperty().bind(anotherProperty)) // Use shorthand form .onDragDonePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onDragDroppedPropertyApply
public EllipseBuilder onDragDroppedPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragDroppedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onDragDroppedProperty().bind(anotherProperty)) // Use shorthand form .onDragDroppedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onDragEnteredPropertyApply
public EllipseBuilder onDragEnteredPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragEnteredPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onDragEnteredProperty().bind(anotherProperty)) // Use shorthand form .onDragEnteredPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onDragExitedPropertyApply
public EllipseBuilder onDragExitedPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragExitedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onDragExitedProperty().bind(anotherProperty)) // Use shorthand form .onDragExitedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onDragOverPropertyApply
public EllipseBuilder onDragOverPropertyApply(Consumer<ObjectProperty<EventHandler<? super DragEvent>>> op) Applies a function to theonDragOverPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onDragOverProperty().bind(anotherProperty)) // Use shorthand form .onDragOverPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onInputMethodTextChangedPropertyApply
public EllipseBuilder onInputMethodTextChangedPropertyApply(Consumer<ObjectProperty<EventHandler<? super InputMethodEvent>>> op) Applies a function to theonInputMethodTextChangedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onInputMethodTextChangedProperty().bind(anotherProperty)) // Use shorthand form .onInputMethodTextChangedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onKeyPressedPropertyApply
public EllipseBuilder onKeyPressedPropertyApply(Consumer<ObjectProperty<EventHandler<? super KeyEvent>>> op) Applies a function to theonKeyPressedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onKeyPressedProperty().bind(anotherProperty)) // Use shorthand form .onKeyPressedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onKeyReleasedPropertyApply
public EllipseBuilder onKeyReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super KeyEvent>>> op) Applies a function to theonKeyReleasedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onKeyReleasedProperty().bind(anotherProperty)) // Use shorthand form .onKeyReleasedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onKeyTypedPropertyApply
public EllipseBuilder onKeyTypedPropertyApply(Consumer<ObjectProperty<EventHandler<? super KeyEvent>>> op) Applies a function to theonKeyTypedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onKeyTypedProperty().bind(anotherProperty)) // Use shorthand form .onKeyTypedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseClickedPropertyApply
public EllipseBuilder onMouseClickedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseClickedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseClickedProperty().bind(anotherProperty)) // Use shorthand form .onMouseClickedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseDragEnteredPropertyApply
public EllipseBuilder onMouseDragEnteredPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseDragEvent>>> op) Applies a function to theonMouseDragEnteredPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseDragEnteredProperty().bind(anotherProperty)) // Use shorthand form .onMouseDragEnteredPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseDragExitedPropertyApply
public EllipseBuilder onMouseDragExitedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseDragEvent>>> op) Applies a function to theonMouseDragExitedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseDragExitedProperty().bind(anotherProperty)) // Use shorthand form .onMouseDragExitedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseDragOverPropertyApply
public EllipseBuilder onMouseDragOverPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseDragEvent>>> op) Applies a function to theonMouseDragOverPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseDragOverProperty().bind(anotherProperty)) // Use shorthand form .onMouseDragOverPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseDragReleasedPropertyApply
public EllipseBuilder onMouseDragReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseDragEvent>>> op) Applies a function to theonMouseDragReleasedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseDragReleasedProperty().bind(anotherProperty)) // Use shorthand form .onMouseDragReleasedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseDraggedPropertyApply
public EllipseBuilder onMouseDraggedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseDraggedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseDraggedProperty().bind(anotherProperty)) // Use shorthand form .onMouseDraggedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseEnteredPropertyApply
public EllipseBuilder onMouseEnteredPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseEnteredPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseEnteredProperty().bind(anotherProperty)) // Use shorthand form .onMouseEnteredPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseExitedPropertyApply
public EllipseBuilder onMouseExitedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseExitedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseExitedProperty().bind(anotherProperty)) // Use shorthand form .onMouseExitedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseMovedPropertyApply
public EllipseBuilder onMouseMovedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseMovedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseMovedProperty().bind(anotherProperty)) // Use shorthand form .onMouseMovedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMousePressedPropertyApply
public EllipseBuilder onMousePressedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMousePressedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMousePressedProperty().bind(anotherProperty)) // Use shorthand form .onMousePressedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onMouseReleasedPropertyApply
public EllipseBuilder onMouseReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super MouseEvent>>> op) Applies a function to theonMouseReleasedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onMouseReleasedProperty().bind(anotherProperty)) // Use shorthand form .onMouseReleasedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onRotatePropertyApply
public EllipseBuilder onRotatePropertyApply(Consumer<ObjectProperty<EventHandler<? super RotateEvent>>> op) Applies a function to theonRotatePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onRotateProperty().bind(anotherProperty)) // Use shorthand form .onRotatePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onRotationFinishedPropertyApply
public EllipseBuilder onRotationFinishedPropertyApply(Consumer<ObjectProperty<EventHandler<? super RotateEvent>>> op) Applies a function to theonRotationFinishedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onRotationFinishedProperty().bind(anotherProperty)) // Use shorthand form .onRotationFinishedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onRotationStartedPropertyApply
public EllipseBuilder onRotationStartedPropertyApply(Consumer<ObjectProperty<EventHandler<? super RotateEvent>>> op) Applies a function to theonRotationStartedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onRotationStartedProperty().bind(anotherProperty)) // Use shorthand form .onRotationStartedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onScrollFinishedPropertyApply
public EllipseBuilder onScrollFinishedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ScrollEvent>>> op) Applies a function to theonScrollFinishedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onScrollFinishedProperty().bind(anotherProperty)) // Use shorthand form .onScrollFinishedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onScrollPropertyApply
public EllipseBuilder onScrollPropertyApply(Consumer<ObjectProperty<EventHandler<? super ScrollEvent>>> op) Applies a function to theonScrollPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onScrollProperty().bind(anotherProperty)) // Use shorthand form .onScrollPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onScrollStartedPropertyApply
public EllipseBuilder onScrollStartedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ScrollEvent>>> op) Applies a function to theonScrollStartedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onScrollStartedProperty().bind(anotherProperty)) // Use shorthand form .onScrollStartedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onSwipeDownPropertyApply
public EllipseBuilder onSwipeDownPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeDownPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onSwipeDownProperty().bind(anotherProperty)) // Use shorthand form .onSwipeDownPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onSwipeLeftPropertyApply
public EllipseBuilder onSwipeLeftPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeLeftPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onSwipeLeftProperty().bind(anotherProperty)) // Use shorthand form .onSwipeLeftPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onSwipeRightPropertyApply
public EllipseBuilder onSwipeRightPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeRightPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onSwipeRightProperty().bind(anotherProperty)) // Use shorthand form .onSwipeRightPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onSwipeUpPropertyApply
public EllipseBuilder onSwipeUpPropertyApply(Consumer<ObjectProperty<EventHandler<? super SwipeEvent>>> op) Applies a function to theonSwipeUpPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onSwipeUpProperty().bind(anotherProperty)) // Use shorthand form .onSwipeUpPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onTouchMovedPropertyApply
public EllipseBuilder onTouchMovedPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchMovedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onTouchMovedProperty().bind(anotherProperty)) // Use shorthand form .onTouchMovedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onTouchPressedPropertyApply
public EllipseBuilder onTouchPressedPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchPressedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onTouchPressedProperty().bind(anotherProperty)) // Use shorthand form .onTouchPressedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onTouchReleasedPropertyApply
public EllipseBuilder onTouchReleasedPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchReleasedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onTouchReleasedProperty().bind(anotherProperty)) // Use shorthand form .onTouchReleasedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onTouchStationaryPropertyApply
public EllipseBuilder onTouchStationaryPropertyApply(Consumer<ObjectProperty<EventHandler<? super TouchEvent>>> op) Applies a function to theonTouchStationaryPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onTouchStationaryProperty().bind(anotherProperty)) // Use shorthand form .onTouchStationaryPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onZoomFinishedPropertyApply
public EllipseBuilder onZoomFinishedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ZoomEvent>>> op) Applies a function to theonZoomFinishedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onZoomFinishedProperty().bind(anotherProperty)) // Use shorthand form .onZoomFinishedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onZoomPropertyApply
public EllipseBuilder onZoomPropertyApply(Consumer<ObjectProperty<EventHandler<? super ZoomEvent>>> op) Applies a function to theonZoomPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onZoomProperty().bind(anotherProperty)) // Use shorthand form .onZoomPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
onZoomStartedPropertyApply
public EllipseBuilder onZoomStartedPropertyApply(Consumer<ObjectProperty<EventHandler<? super ZoomEvent>>> op) Applies a function to theonZoomStartedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.onZoomStartedProperty().bind(anotherProperty)) // Use shorthand form .onZoomStartedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
opacityPropertyApply
Applies a function to theopacityPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.opacityProperty().bind(anotherProperty)) // Use shorthand form .opacityPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
parentPropertyApply
Applies a function to theparentPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.parentProperty().bind(anotherProperty)) // Use shorthand form .parentPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
pickOnBoundsPropertyApply
Applies a function to thepickOnBoundsPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.pickOnBoundsProperty().bind(anotherProperty)) // Use shorthand form .pickOnBoundsPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
pressedPropertyApply
Applies a function to thepressedPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.pressedProperty().bind(anotherProperty)) // Use shorthand form .pressedPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
radiusXPropertyApply
Applies a function to theradiusXPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.radiusXProperty().bind(anotherProperty)) // Use shorthand form .radiusXPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
radiusYPropertyApply
Applies a function to theradiusYPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.radiusYProperty().bind(anotherProperty)) // Use shorthand form .radiusYPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
rotatePropertyApply
Applies a function to therotatePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.rotateProperty().bind(anotherProperty)) // Use shorthand form .rotatePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
rotationAxisPropertyApply
Applies a function to therotationAxisPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.rotationAxisProperty().bind(anotherProperty)) // Use shorthand form .rotationAxisPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
scaleXPropertyApply
Applies a function to thescaleXPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.scaleXProperty().bind(anotherProperty)) // Use shorthand form .scaleXPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
scaleYPropertyApply
Applies a function to thescaleYPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.scaleYProperty().bind(anotherProperty)) // Use shorthand form .scaleYPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
scaleZPropertyApply
Applies a function to thescaleZPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.scaleZProperty().bind(anotherProperty)) // Use shorthand form .scaleZPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
scenePropertyApply
Applies a function to thescenePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.sceneProperty().bind(anotherProperty)) // Use shorthand form .scenePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
smoothPropertyApply
Applies a function to thesmoothPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.smoothProperty().bind(anotherProperty)) // Use shorthand form .smoothPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokeDashOffsetPropertyApply
Applies a function to thestrokeDashOffsetPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeDashOffsetProperty().bind(anotherProperty)) // Use shorthand form .strokeDashOffsetPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokeLineCapPropertyApply
Applies a function to thestrokeLineCapPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeLineCapProperty().bind(anotherProperty)) // Use shorthand form .strokeLineCapPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokeLineJoinPropertyApply
Applies a function to thestrokeLineJoinPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeLineJoinProperty().bind(anotherProperty)) // Use shorthand form .strokeLineJoinPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokeMiterLimitPropertyApply
Applies a function to thestrokeMiterLimitPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeMiterLimitProperty().bind(anotherProperty)) // Use shorthand form .strokeMiterLimitPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokePropertyApply
Applies a function to thestrokePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeProperty().bind(anotherProperty)) // Use shorthand form .strokePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokeTypePropertyApply
Applies a function to thestrokeTypePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeTypeProperty().bind(anotherProperty)) // Use shorthand form .strokeTypePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
strokeWidthPropertyApply
Applies a function to thestrokeWidthPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.strokeWidthProperty().bind(anotherProperty)) // Use shorthand form .strokeWidthPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
stylePropertyApply
Applies a function to thestylePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.styleProperty().bind(anotherProperty)) // Use shorthand form .stylePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
translateXPropertyApply
Applies a function to thetranslateXPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.translateXProperty().bind(anotherProperty)) // Use shorthand form .translateXPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
translateYPropertyApply
Applies a function to thetranslateYPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.translateYProperty().bind(anotherProperty)) // Use shorthand form .translateYPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
translateZPropertyApply
Applies a function to thetranslateZPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.translateZProperty().bind(anotherProperty)) // Use shorthand form .translateZPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
viewOrderPropertyApply
Applies a function to theviewOrderPropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.viewOrderProperty().bind(anotherProperty)) // Use shorthand form .viewOrderPropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
visiblePropertyApply
Applies a function to thevisiblePropertyof the instance being constructed. This serves as a shorthand form of theapplymethod.Example:
// Use apply .apply(obj -> obj.visibleProperty().bind(anotherProperty)) // Use shorthand form .visiblePropertyApply(prop -> prop.bind(anotherProperty))- Returns:
- builder instance
-
bottomAnchorInAnchorPane
Invokes theAnchorPane.setBottomAnchor(Node, Double)using a fluent API.Example:
// Original API var btn = new Button(); var root = new AnchorPane(btn); AnchorPane.setBottomAnchor(btn, new Insets(10)); // Fluent API var root = AnchorPaneBuilder.create( ButtonBuilder.create() .bottomAnchorInAnchorPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
leftAnchorInAnchorPane
Invokes theAnchorPane.setLeftAnchor(Node, Double)using a fluent API.Example:
// Original API var btn = new Button(); var root = new AnchorPane(btn); AnchorPane.setLeftAnchor(btn, new Insets(10)); // Fluent API var root = AnchorPaneBuilder.create( ButtonBuilder.create() .leftAnchorInAnchorPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
rightAnchorInAnchorPane
Invokes theAnchorPane.setRightAnchor(Node, Double)using a fluent API.Example:
// Original API var btn = new Button(); var root = new AnchorPane(btn); AnchorPane.setRightAnchor(btn, new Insets(10)); // Fluent API var root = AnchorPaneBuilder.create( ButtonBuilder.create() .rightAnchorInAnchorPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
topAnchorInAnchorPane
Invokes theAnchorPane.setTopAnchor(Node, Double)using a fluent API.Example:
// Original API var btn = new Button(); var root = new AnchorPane(btn); AnchorPane.setTopAnchor(btn, new Insets(10)); // Fluent API var root = AnchorPaneBuilder.create( ButtonBuilder.create() .topAnchorInAnchorPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
alignmentInBorderPane
Invokes theBorderPane.setAlignment(Node, Pos)using a fluent API.Example:
// Original API var btn = new Button(); var root = new BorderPane(btn); BorderPane.setAlignment(btn, new Insets(10)); // Fluent API var root = BorderPaneBuilder.create( ButtonBuilder.create() .alignmentInBorderPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInBorderPane
Invokes theBorderPane.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new BorderPane(btn); BorderPane.setMargin(btn, new Insets(10)); // Fluent API var root = BorderPaneBuilder.create( ButtonBuilder.create() .marginInBorderPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInFlowPane
Invokes theFlowPane.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new FlowPane(btn); FlowPane.setMargin(btn, new Insets(10)); // Fluent API var root = FlowPaneBuilder.create( ButtonBuilder.create() .marginInFlowPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
columnIndexInGridPane
Invokes theGridPane.setColumnIndex(Node, Integer)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setColumnIndex(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .columnIndexInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
columnSpanInGridPane
Invokes theGridPane.setColumnSpan(Node, Integer)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setColumnSpan(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .columnSpanInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
constraintsInGridPane
Invokes theGridPane.setConstraints(Node, int, int)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setConstraints(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .constraintsInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
constraintsInGridPane
public EllipseBuilder constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan) Invokes theGridPane.setConstraints(Node, int, int, int, int)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setConstraints(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .constraintsInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
constraintsInGridPane
public EllipseBuilder constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment) Invokes theGridPane.setConstraints(Node, int, int, int, int, HPos, VPos)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setConstraints(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .constraintsInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
constraintsInGridPane
public EllipseBuilder constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow) Invokes theGridPane.setConstraints(Node, int, int, int, int, HPos, VPos, Priority, Priority)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setConstraints(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .constraintsInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
constraintsInGridPane
public EllipseBuilder constraintsInGridPane(int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow, Insets margin) Invokes theGridPane.setConstraints(Node, int, int, int, int, HPos, VPos, Priority, Priority, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setConstraints(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .constraintsInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
fillHeightInGridPane
Invokes theGridPane.setFillHeight(Node, Boolean)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setFillHeight(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .fillHeightInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
fillWidthInGridPane
Invokes theGridPane.setFillWidth(Node, Boolean)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setFillWidth(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .fillWidthInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
hAlignmentInGridPane
Invokes theGridPane.setHalignment(Node, HPos)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setHalignment(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .hAlignmentInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
hGrowInGridPane
Invokes theGridPane.setHgrow(Node, Priority)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setHgrow(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .hGrowInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInGridPane
Invokes theGridPane.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setMargin(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .marginInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
rowIndexInGridPane
Invokes theGridPane.setRowIndex(Node, Integer)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setRowIndex(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .rowIndexInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
rowSpanInGridPane
Invokes theGridPane.setRowSpan(Node, Integer)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setRowSpan(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .rowSpanInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
vAlignmentInGridPane
Invokes theGridPane.setValignment(Node, VPos)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setValignment(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .vAlignmentInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
vGrowInGridPane
Invokes theGridPane.setVgrow(Node, Priority)using a fluent API.Example:
// Original API var btn = new Button(); var root = new GridPane(btn); GridPane.setVgrow(btn, new Insets(10)); // Fluent API var root = GridPaneBuilder.create( ButtonBuilder.create() .vGrowInGridPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
hGrowInHBox
Invokes theHBox.setHgrow(Node, Priority)using a fluent API.Example:
// Original API var btn = new Button(); var root = new HBox(btn); HBox.setHgrow(btn, new Insets(10)); // Fluent API var root = HBoxBuilder.create( ButtonBuilder.create() .hGrowInHBox(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInHBox
Invokes theHBox.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new HBox(btn); HBox.setMargin(btn, new Insets(10)); // Fluent API var root = HBoxBuilder.create( ButtonBuilder.create() .marginInHBox(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
alignmentInStackPane
Invokes theStackPane.setAlignment(Node, Pos)using a fluent API.Example:
// Original API var btn = new Button(); var root = new StackPane(btn); StackPane.setAlignment(btn, new Insets(10)); // Fluent API var root = StackPaneBuilder.create( ButtonBuilder.create() .alignmentInStackPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInStackPane
Invokes theStackPane.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new StackPane(btn); StackPane.setMargin(btn, new Insets(10)); // Fluent API var root = StackPaneBuilder.create( ButtonBuilder.create() .marginInStackPane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
alignmentInTilePane
Invokes theTilePane.setAlignment(Node, Pos)using a fluent API.Example:
// Original API var btn = new Button(); var root = new TilePane(btn); TilePane.setAlignment(btn, new Insets(10)); // Fluent API var root = TilePaneBuilder.create( ButtonBuilder.create() .alignmentInTilePane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInTilePane
Invokes theTilePane.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new TilePane(btn); TilePane.setMargin(btn, new Insets(10)); // Fluent API var root = TilePaneBuilder.create( ButtonBuilder.create() .marginInTilePane(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
marginInVBox
Invokes theVBox.setMargin(Node, Insets)using a fluent API.Example:
// Original API var btn = new Button(); var root = new VBox(btn); VBox.setMargin(btn, new Insets(10)); // Fluent API var root = VBoxBuilder.create( ButtonBuilder.create() .marginInVBox(new Insets(10)) .build()) .build();- Returns:
- builder instance
-
vGrowInVBox
Invokes theVBox.setVgrow(Node, Priority)using a fluent API.Example:
// Original API var btn = new Button(); var root = new VBox(btn); VBox.setVgrow(btn, new Insets(10)); // Fluent API var root = VBoxBuilder.create( ButtonBuilder.create() .vGrowInVBox(new Insets(10)) .build()) .build();- Returns:
- builder instance
-