public static enum AnimationModel.Interpolation extends java.lang.Enum<AnimationModel.Interpolation>
| Enum Constant and Description |
|---|
CUBICSPLINE
Cubic spline interpolation
|
LINEAR
Linear interpolation
|
STEP
Stepwise interpolation
|
| Modifier and Type | Method and Description |
|---|---|
static AnimationModel.Interpolation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnimationModel.Interpolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationModel.Interpolation STEP
public static final AnimationModel.Interpolation LINEAR
public static final AnimationModel.Interpolation CUBICSPLINE
public static AnimationModel.Interpolation[] values()
for (AnimationModel.Interpolation c : AnimationModel.Interpolation.values()) System.out.println(c);
public static AnimationModel.Interpolation 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 nullCopyright © 2022. All Rights Reserved.