Enum Constant and Description |
---|
GAUSSIAN
A Gaussian blur kernel is used to blur the shadow with very high
quality.
|
ONE_PASS_BOX
A single pass of a box filter is used to blur the shadow.
|
THREE_PASS_BOX
Three passes of a box filter are used to blur the shadow for an
effect that is almost as smooth as a Gaussian filter.
|
TWO_PASS_BOX
Two passes of a box filter are used to blur the shadow for a slightly
smoother effect.
|
Modifier and Type | Method and Description |
---|---|
static BlurType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlurType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlurType ONE_PASS_BOX
public static final BlurType TWO_PASS_BOX
public static final BlurType THREE_PASS_BOX
public static final BlurType GAUSSIAN
public static BlurType[] values()
for (BlurType c : BlurType.values()) System.out.println(c);
public static BlurType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.