public static enum RXSInterpolator.InterpolationProfile extends java.lang.Enum<RXSInterpolator.InterpolationProfile>
Enum Constant and Description |
---|
LINEAR
constant speed interpolation
|
STEP
Discrete interpolation, jumps from from to to transform
when u is greater than or equal to 0.5.
|
TRAPEZOIDAL
first and last parts constant accel, middle part constant speed
|
Modifier and Type | Method and Description |
---|---|
static RXSInterpolator.InterpolationProfile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RXSInterpolator.InterpolationProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RXSInterpolator.InterpolationProfile LINEAR
public static final RXSInterpolator.InterpolationProfile TRAPEZOIDAL
public static final RXSInterpolator.InterpolationProfile STEP
Discrete interpolation, jumps from from to to transform when u is greater than or equal to 0.5.
public static RXSInterpolator.InterpolationProfile[] values()
for (RXSInterpolator.InterpolationProfile c : RXSInterpolator.InterpolationProfile.values()) System.out.println(c);
public static RXSInterpolator.InterpolationProfile 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