public enum ExtrapolationType extends java.lang.Enum<ExtrapolationType>
Enum Constant and Description |
---|
CONSTANT
Value will keep the same value of the last value
|
CYCLE
The repetition.
|
CYCLE_RELATIVE
Repeat the previous pattern based on the last value
|
GRADIENT
Value will keep the same slope by time
|
OSCILLATE
The mirror repetition.
|
Modifier and Type | Method and Description |
---|---|
static ExtrapolationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtrapolationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtrapolationType CONSTANT
public static final ExtrapolationType GRADIENT
public static final ExtrapolationType CYCLE
public static final ExtrapolationType CYCLE_RELATIVE
public static final ExtrapolationType OSCILLATE
public static ExtrapolationType[] values()
for (ExtrapolationType c : ExtrapolationType.values()) System.out.println(c);
public static ExtrapolationType 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