public final class EffectTechniqueCollection extends java.lang.Object implements java.lang.Iterable<EffectTechnique>
Constructor and Description |
---|
EffectTechniqueCollection() |
Modifier and Type | Method and Description |
---|---|
int |
Count()
Gets the number of objects in the collection.
|
EffectTechnique |
get(int index)
Gets a specific element in the collection by using an index value.
|
EffectTechnique |
get(java.lang.String name)
Gets a specific element in the collection by using a name.
|
java.util.Iterator<EffectTechnique> |
iterator()
Gets an iterator that can iterate through the EffectTechniqueCollection.
|
public EffectTechnique get(int index)
index
- Index of the EffectTechnique to get.public EffectTechnique get(java.lang.String name)
name
- Name of the EffectTechnique to get.public int Count()
public java.util.Iterator<EffectTechnique> iterator()
iterator
in interface java.lang.Iterable<EffectTechnique>