Package | Description |
---|---|
javafx.scene.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
Modifier and Type | Method and Description |
---|---|
BlurType |
DropShadow.getBlurType()
Gets the value of the property blurType.
|
BlurType |
InnerShadow.getBlurType()
Gets the value of the property blurType.
|
BlurType |
Shadow.getBlurType()
Gets the value of the property blurType.
|
static BlurType |
BlurType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlurType[] |
BlurType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<BlurType> |
DropShadow.blurTypeProperty()
The algorithm used to blur the shadow.
|
ObjectProperty<BlurType> |
InnerShadow.blurTypeProperty()
The algorithm used to blur the shadow.
|
ObjectProperty<BlurType> |
Shadow.blurTypeProperty()
The algorithm used to blur the shadow.
|
Modifier and Type | Method and Description |
---|---|
void |
DropShadow.setBlurType(BlurType value)
Sets the value of the property blurType.
|
void |
InnerShadow.setBlurType(BlurType value)
Sets the value of the property blurType.
|
void |
Shadow.setBlurType(BlurType value)
Sets the value of the property blurType.
|
Constructor and Description |
---|
DropShadow(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.
|
Shadow(BlurType blurType,
Color color,
double radius)
Creates a new instance of Shadow with the specified blurType, color,
radius.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.