Package | Description |
---|---|
com.sun.javafx.css.parser | |
com.sun.javafx.tk | |
javafx.scene.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
Modifier and Type | Method and Description |
---|---|
private ParsedValueImpl<java.lang.String,BlurType> |
CSSParser.blurType(CSSParser.Term root) |
Modifier and Type | Method and Description |
---|---|
AbstractShadow.ShadowMode |
Toolkit.toShadowMode(BlurType blurType) |
Modifier and Type | Field and Description |
---|---|
private BlurType |
InnerShadowBuilder.blurType
Deprecated.
|
private BlurType |
ShadowBuilder.blurType
Deprecated.
|
private BlurType |
DropShadowBuilder.blurType
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<BlurType> |
Shadow.blurType
The algorithm used to blur the shadow.
|
private ObjectProperty<BlurType> |
DropShadow.blurType
The algorithm used to blur the shadow.
|
private ObjectProperty<BlurType> |
InnerShadow.blurType
The algorithm used to blur the shadow.
|
Modifier and Type | Method and Description |
---|---|
BlurType |
Shadow.getBlurType() |
BlurType |
DropShadow.getBlurType() |
BlurType |
InnerShadow.getBlurType() |
private BlurType |
Shadow.getBlurTypeInternal() |
private BlurType |
DropShadow.getBlurTypeInternal() |
private BlurType |
InnerShadow.getBlurTypeInternal() |
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() |
ObjectProperty<BlurType> |
DropShadow.blurTypeProperty() |
ObjectProperty<BlurType> |
InnerShadow.blurTypeProperty() |
Modifier and Type | Method and Description |
---|---|
B |
InnerShadowBuilder.blurType(BlurType x)
Deprecated.
Set the value of the
blurType property for the instance constructed by this builder. |
B |
ShadowBuilder.blurType(BlurType x)
Deprecated.
Set the value of the
blurType property for the instance constructed by this builder. |
B |
DropShadowBuilder.blurType(BlurType x)
Deprecated.
Set the value of the
blurType property for the instance constructed by this builder. |
(package private) static BaseBounds |
Effect.getShadowBounds(BaseBounds bounds,
BaseTransform tx,
float width,
float height,
BlurType blurType) |
void |
Shadow.setBlurType(BlurType value) |
void |
DropShadow.setBlurType(BlurType value) |
void |
InnerShadow.setBlurType(BlurType value) |
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.
|