public final class ModelBoneCollection extends ReadOnlyCollection<ModelBone>
Modifier and Type | Class and Description |
---|---|
class |
ModelBoneCollection.ModelBoneCollectionIterator
Provides the ability to iterate through the bones in an ModelBoneCollection.
|
Modifier and Type | Method and Description |
---|---|
ModelBone |
get(java.lang.String boneName)
Retrieves a ModelBone from the collection, given the name of the bone.
|
java.util.Iterator<ModelBone> |
getIterator()
Returns a ModelBoneCollection.Enumerator that can iterate through a ModelBoneCollection.
|
boolean |
TryGetValue(java.lang.String boneName,
ModelBone value)
Finds a bone with a given name if it exists in the collection.
|
public ModelBone get(java.lang.String boneName)
boneName
- The name of the bone to retrieve.public java.util.Iterator<ModelBone> getIterator()
public boolean TryGetValue(java.lang.String boneName, ModelBone value)
boneName
- The name of the bone to find.value
- [OutAttribute] The bone named boneName, if found.