public static enum DecayFunction.Type extends java.lang.Enum<DecayFunction.Type>
Enum Constant and Description |
---|
BACKWARD_EXPONENTIAL |
FORWARD_EXPONENTIAL |
Modifier and Type | Method and Description |
---|---|
static DecayFunction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DecayFunction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecayFunction.Type BACKWARD_EXPONENTIAL
public static final DecayFunction.Type FORWARD_EXPONENTIAL
public static DecayFunction.Type[] values()
for (DecayFunction.Type c : DecayFunction.Type.values()) System.out.println(c);
public static DecayFunction.Type 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