public class AnimationChannel extends java.lang.Object implements java.lang.Iterable<KeyframeSequence>
Modifier and Type | Method and Description |
---|---|
void |
addKeyframeSequence(KeyframeSequence sequence)
Adds keyframe sequence to this channel
|
java.lang.Class<?> |
getComponentType()
Gets the component field's type
|
java.lang.Object |
getDefaultValue()
Gets the Default value of the channel.
|
java.util.List<KeyframeSequence> |
getKeyframeSequences()
Gets all keyframe sequences inside this channel
|
java.lang.String |
getName()
Gets the name of the channel
|
java.util.Iterator<KeyframeSequence> |
iterator()
Gets an enumerator to walk through all keyframe sequences inside this channel
|
void |
setDefaultValue(java.lang.Object value)
Sets the Default value of the channel.
|
public java.lang.Class<?> getComponentType()
public java.lang.String getName()
public java.lang.Object getDefaultValue()
public void setDefaultValue(java.lang.Object value)
value
- New valuepublic java.util.List<KeyframeSequence> getKeyframeSequences()
public void addKeyframeSequence(KeyframeSequence sequence)
sequence
- The keyframe sequence to add.public java.util.Iterator<KeyframeSequence> iterator()
iterator
in interface java.lang.Iterable<KeyframeSequence>