public static enum DecayFunction.MathFunction extends Enum<DecayFunction.MathFunction>
| Enum Constant and Description |
|---|
EXP
指数函数
|
GAUSS
高斯函数
|
LINEAR
线性函数
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DecayFunction.MathFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecayFunction.MathFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecayFunction.MathFunction UNKNOWN
public static final DecayFunction.MathFunction GAUSS
public static final DecayFunction.MathFunction EXP
public static final DecayFunction.MathFunction LINEAR
public static DecayFunction.MathFunction[] values()
for (DecayFunction.MathFunction c : DecayFunction.MathFunction.values()) System.out.println(c);
public static DecayFunction.MathFunction 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 © 2024. All Rights Reserved.