public enum InterpolationMethod extends Enum<InterpolationMethod>
Enum Constant and Description |
---|
HERMITE
Hermite插值。
|
LAGRANGE
拉格朗日插值。
|
LINEAR
线性插值。
|
PROPAGATE
传播。
|
Modifier and Type | Method and Description |
---|---|
static InterpolationMethod |
valueOf(String name)
返回具有指定名称的枚举常量。
|
static InterpolationMethod[] |
values()
返回一个数组,其中包含枚举类型的常量,按照它们被声明的顺序排列。
|
public static final InterpolationMethod HERMITE
public static final InterpolationMethod LAGRANGE
public static final InterpolationMethod LINEAR
public static final InterpolationMethod PROPAGATE
public static InterpolationMethod[] values()
for (InterpolationMethod c : InterpolationMethod.values()) System.out.println(c);
public static InterpolationMethod valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
Copyright © 2002-2023 CS GROUP. All rights reserved.