public enum EdgeFilteringMode extends java.lang.Enum<EdgeFilteringMode>
ShadowEdgeFiltering specifies how shadows are filtered| Enum Constant and Description | 
|---|
| BilinearBilinear filtering is used. | 
| DitherDither-based sampling is used, very cheap but can look bad at low
 resolutions. | 
| NearestShadows are not filtered. | 
| PCF44x4 percentage-closer filtering is used. | 
| PCF88x8 percentage-closer filtering is used. | 
| PCFPOISSON12 samples percentage-closer filtering with a POISON disc distribution 
 is used. | 
| Modifier and Type | Method and Description | 
|---|---|
| int | getMaterialParamValue() | 
| static EdgeFilteringMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static EdgeFilteringMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EdgeFilteringMode Nearest
public static final EdgeFilteringMode Bilinear
public static final EdgeFilteringMode Dither
public static final EdgeFilteringMode PCF4
public static final EdgeFilteringMode PCFPOISSON
public static final EdgeFilteringMode PCF8
public static EdgeFilteringMode[] values()
for (EdgeFilteringMode c : EdgeFilteringMode.values()) System.out.println(c);
public static EdgeFilteringMode 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 nullpublic int getMaterialParamValue()