public enum ImageSmoothingAlgorithm extends Enum<ImageSmoothingAlgorithm>
| Enum Constant and Description |
|---|
SCALE_AREA_AVERAGING |
SCALE_DEFAULT |
SCALE_FAST |
SCALE_REPLICATE |
SCALE_SMOOTH |
| Modifier and Type | Method and Description |
|---|---|
static ImageSmoothingAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageSmoothingAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageSmoothingAlgorithm SCALE_DEFAULT
Image.SCALE_DEFAULTpublic static final ImageSmoothingAlgorithm SCALE_AREA_AVERAGING
Image.SCALE_AREA_AVERAGINGpublic static final ImageSmoothingAlgorithm SCALE_FAST
Image.SCALE_FASTpublic static final ImageSmoothingAlgorithm SCALE_REPLICATE
Image.SCALE_REPLICATEpublic static final ImageSmoothingAlgorithm SCALE_SMOOTH
Image.SCALE_SMOOTHpublic static ImageSmoothingAlgorithm[] values()
for (ImageSmoothingAlgorithm c : ImageSmoothingAlgorithm.values()) System.out.println(c);
public static ImageSmoothingAlgorithm valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null