de.jreality.plugin.audio
Enum Audio.InterpolationType
java.lang.Object
java.lang.Enum<Audio.InterpolationType>
de.jreality.plugin.audio.Audio.InterpolationType
- All Implemented Interfaces:
- Serializable, Comparable<Audio.InterpolationType>
- Enclosing class:
- Audio
public static enum Audio.InterpolationType
- extends Enum<Audio.InterpolationType>
noInterpolation
public static final Audio.InterpolationType noInterpolation
linearInterpolation
public static final Audio.InterpolationType linearInterpolation
cosineInterpolation
public static final Audio.InterpolationType cosineInterpolation
cubicInterpolation
public static final Audio.InterpolationType cubicInterpolation
values
public static final Audio.InterpolationType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Audio.InterpolationType c : Audio.InterpolationType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Audio.InterpolationType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name