public enum InterpolationFilterType extends Enum<InterpolationFilterType>
| Enum Constant and Description |
|---|
Bicubic |
Box
The 'Box' Or 'Nearest Neighbor' filter
|
Triangle
The 'Triangle' or 'Bilinear' interpolation filter just takes the interpolation
of the nearest neighbourhood one step further.
|
| Modifier and Type | Method and Description |
|---|---|
static InterpolationFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpolationFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpolationFilterType Box
public static final InterpolationFilterType Triangle
public static final InterpolationFilterType Bicubic
public static InterpolationFilterType[] values()
for (InterpolationFilterType c : InterpolationFilterType.values()) System.out.println(c);
public static InterpolationFilterType 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 nullCopyright © 2025 Aspose. All rights reserved.