public enum InterpolationMethod extends Enum<InterpolationMethod>
| Enum Constant and Description |
|---|
GeographicallyWeightedRegression
Geographically weighted regression interpolation method
|
NaturalNeighbor
Sibson's Natural Neighbor interpolation method
|
TriangularFacet
Planar triangular facet interpolation method
|
| Modifier and Type | Method and Description |
|---|---|
org.tinfour.interpolation.IInterpolatorOverTin |
getInterpolator(org.tinfour.common.IIncrementalTin tin)
Constructs an interpolator based on the enumeration value.
|
static InterpolationMethod |
lenientValue(String target)
Determine an interpolation method, applying a lenient rules
to determine which one is indicated by the string.
|
static InterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpolationMethod NaturalNeighbor
public static final InterpolationMethod TriangularFacet
public static final InterpolationMethod GeographicallyWeightedRegression
public static InterpolationMethod[] values()
for (InterpolationMethod c : InterpolationMethod.values()) System.out.println(c);
public static InterpolationMethod 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 nullpublic static InterpolationMethod lenientValue(String target)
target - a valid stringpublic org.tinfour.interpolation.IInterpolatorOverTin getInterpolator(org.tinfour.common.IIncrementalTin tin)
tin - a valid instance of an IIncrementalTin implementation.Copyright © 2019. All rights reserved.