com.microstrategy.web.transform.Transforms |
The Transforms interface exposes a collection of Transform objects.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean |
addTransform(Transform _transform)
Adds a Transform object to the collection.
| ||||||||||
abstract void |
clear()
Removes all of the Transform objects from the collection
| ||||||||||
abstract int |
getCount()
Returns the number of Transform objects in the collection.
| ||||||||||
abstract Transform |
getTransform(String name)
Retrives a specific Transform object by its className.
| ||||||||||
abstract Transform |
getTransform(int index)
Retrieves a specific Transform object by its numeric index.
| ||||||||||
abstract Transform |
remove(int index)
Removes the Transform object at the specified position in the collection.
| ||||||||||
abstract Transform |
remove(String className)
Removes the Transform object with the specified class name from the collection.
| ||||||||||
abstract Transform |
remove(Transform trans)
Removes the Transform object from the collection.
|
Adds a Transform object to the collection.
_transform | the name of the new Transform object. |
---|
IllegalArgumentException | thrown if this transform is not in the collection |
---|
Removes all of the Transform objects from the collection
Returns the number of Transform objects in the collection.
Retrives a specific Transform object by its className.
name | class Name of the Transform object. |
---|
Transform
object in the collection with the given class name.IllegalArgumentException | thrown if no transform has the given class name in the collection. |
---|
Retrieves a specific Transform object by its numeric index.
index | of the Transform object in collection. |
---|
Transform
object in the collection with the given index.IndexOutOfBoundsException | thrown if the index is invalid. |
---|
Removes the Transform object at the specified position in the collection.
index | of the Transform object to remove. |
---|
thrown if the specified index is out of range. | |
IndexOutOfBoundsException |
Removes the Transform object with the specified class name from the collection.
className | the name of the Transform object to remove. |
---|
IllegalArgumentException | thrown if no transform definition has the given name in the collection. |
---|
Removes the Transform object from the collection.
trans | the Transform object to remove. |
---|
IllegalArgumentException | thrown if no transform has the given class name in the collection. |
---|