Package kr.toxicity.model.api.data.raw
Enum Class KeyframeChannel
- All Implemented Interfaces:
Serializable,Comparable<KeyframeChannel>,Constable
Represents the type of property a keyframe affects.
- Since:
- 1.15.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents an unknown or unsupported channel.Represents a particle effect.Affects the position of a bone.Affects the rotation of a bone.Affects the scale of a bone.Represents a sound effect.Represents a timeline for sound or particle effects. -
Method Summary
Modifier and TypeMethodDescriptionstatic KeyframeChannelReturns the enum constant of this class with the specified name.static KeyframeChannel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
POSITION
Affects the position of a bone.- Since:
- 1.15.2
-
ROTATION
Affects the rotation of a bone.- Since:
- 1.15.2
-
SCALE
Affects the scale of a bone.- Since:
- 1.15.2
-
TIMELINE
Represents a timeline for sound or particle effects.- Since:
- 1.15.2
-
SOUND
Represents a sound effect.- Since:
- 1.15.2
-
PARTICLE
Represents a particle effect.- Since:
- 1.15.2
-
NOT_FOUND
Represents an unknown or unsupported channel.- Since:
- 1.15.2
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-