public enum SearchMode extends java.lang.Enum<SearchMode>
Search mode enumeration of the sample points used during interpolation.
For the same interpolation method, the selection methods of sample point are different, and the got interpolation result is different.
| Enum Constant and Description |
|---|
KDTREE_FIXED_COUNT
Uses the fixed points of KDTREE to find the points involved in interpolation analysis.
|
KDTREE_FIXED_RADIUS
Use the fixed-length method of KDTREE to find the points involved in interpolation analysis.
|
NONE
Instead of searching, uses all input points for interpolation.
|
QUADTREE
Using QUADTREE method to find the points involved in interpolation analysis, which is only useful for spline(Radial Basis Function) interpolation and common Kriging.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final SearchMode KDTREE_FIXED_COUNT
public static final SearchMode KDTREE_FIXED_RADIUS
public static final SearchMode NONE
public static final SearchMode QUADTREE
public static SearchMode[] values()
for (SearchMode c : SearchMode.values())
System.out.println(c);
public static SearchMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null