public enum CoverageDataAlgorithm extends Enum<CoverageDataAlgorithm>
| Enum Constant and Description |
|---|
BICUBIC
Considers 16 pixels to interpolate each value
|
BILINEAR
Performs linear interpolation first in one direction, and then again in
the other direction
|
NEAREST_NEIGHBOR
Selects the value of the nearest point and does not consider the values
of neighboring points at all
|
| Modifier and Type | Method and Description |
|---|---|
static CoverageDataAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoverageDataAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoverageDataAlgorithm NEAREST_NEIGHBOR
public static final CoverageDataAlgorithm BILINEAR
public static final CoverageDataAlgorithm BICUBIC
public static CoverageDataAlgorithm[] values()
for (CoverageDataAlgorithm c : CoverageDataAlgorithm.values()) System.out.println(c);
public static CoverageDataAlgorithm 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 © 2020 National Geospatial-Intelligence Agency. All rights reserved.