public enum ElevationTilesAlgorithm extends Enum<ElevationTilesAlgorithm>
| 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 ElevationTilesAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElevationTilesAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElevationTilesAlgorithm NEAREST_NEIGHBOR
public static final ElevationTilesAlgorithm BILINEAR
public static final ElevationTilesAlgorithm BICUBIC
public static ElevationTilesAlgorithm[] values()
for (ElevationTilesAlgorithm c : ElevationTilesAlgorithm.values()) System.out.println(c);
public static ElevationTilesAlgorithm 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 © 2017 National Geospatial-Intelligence Agency. All rights reserved.