Uses of Enum Class
javafx.scene.effect.BlurType
Package
Description
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
-
Uses of BlurType in javafx.scene.effect
Modifier and TypeMethodDescriptionfinal BlurType
DropShadow.getBlurType()
Gets the value of theblurType
property.final BlurType
InnerShadow.getBlurType()
Gets the value of theblurType
property.final BlurType
Shadow.getBlurType()
Gets the value of theblurType
property.static BlurType
Returns the enum constant of this class with the specified name.static BlurType[]
BlurType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionfinal ObjectProperty
<BlurType> DropShadow.blurTypeProperty()
The algorithm used to blur the shadow.final ObjectProperty
<BlurType> InnerShadow.blurTypeProperty()
The algorithm used to blur the shadow.final ObjectProperty
<BlurType> Shadow.blurTypeProperty()
The algorithm used to blur the shadow.Modifier and TypeMethodDescriptionfinal void
DropShadow.setBlurType
(BlurType value) Sets the value of theblurType
property.final void
InnerShadow.setBlurType
(BlurType value) Sets the value of theblurType
property.final void
Shadow.setBlurType
(BlurType value) Sets the value of theblurType
property.ModifierConstructorDescriptionDropShadow
(BlurType blurType, Color color, double radius, double spread, double offsetX, double offsetY) Creates a new instance of DropShadow with the specified blurType, color, radius, spread, offsetX and offsetY.InnerShadow
(BlurType blurType, Color color, double radius, double choke, double offsetX, double offsetY) Creates a new instance of InnerShadow with the specified blurType, color, radius, spread, offsetX and offsetY.Creates a new instance of Shadow with the specified blurType, color, radius.