Package | Description |
---|---|
javafx.scene.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
Modifier and Type | Field and Description |
---|---|
private BlurType |
ShadowBuilder.blurType |
private BlurType |
InnerShadowBuilder.blurType |
private BlurType |
DropShadowBuilder.blurType |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<BlurType> |
Shadow.blurType
The algorithm used to blur the shadow.
|
private ObjectProperty<BlurType> |
InnerShadow.blurType
The algorithm used to blur the shadow.
|
private ObjectProperty<BlurType> |
DropShadow.blurType
The algorithm used to blur the shadow.
|
Modifier and Type | Method and Description |
---|---|
BlurType |
Shadow.getBlurType()
Gets the value of the property blurType.
|
BlurType |
InnerShadow.getBlurType()
Gets the value of the property blurType.
|
BlurType |
DropShadow.getBlurType()
Gets the value of the property blurType.
|
static BlurType |
BlurType.valueOf(java.lang.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> |
Shadow.blurTypeProperty()
The algorithm used to blur the shadow.
|
ObjectProperty<BlurType> |
InnerShadow.blurTypeProperty()
The algorithm used to blur the shadow.
|
ObjectProperty<BlurType> |
DropShadow.blurTypeProperty()
The algorithm used to blur the shadow.
|
Modifier and Type | Method and Description |
---|---|
B |
ShadowBuilder.blurType(BlurType x)
Set the value of the
blurType property for the instance constructed by this builder. |
B |
InnerShadowBuilder.blurType(BlurType x)
Set the value of the
blurType property for the instance constructed by this builder. |
B |
DropShadowBuilder.blurType(BlurType x)
Set the value of the
blurType property for the instance constructed by this builder. |
void |
Shadow.setBlurType(BlurType value)
Sets the value of the property blurType.
|
void |
InnerShadow.setBlurType(BlurType value)
Sets the value of the property blurType.
|
void |
DropShadow.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.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.