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