com.microstrategy.web.transform.FormalParameters |
The FormalParameters interface is a read-only collection, used to learn the nature of a set of existing formal parameters.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean |
containsFormalParameter(String name)
Returns true if the collection contains the specified
FormalParameter . | ||||||||||
abstract int |
getCount()
Returns the number of formal parameters in the collection.
| ||||||||||
abstract FormalParameter |
getFormalParameter(String name)
Retrives a specific formal parameter by its name.
| ||||||||||
abstract FormalParameter |
getFormalParameter(int index)
Retrieves a specific formal paramter by its numeric index.
|
Returns true if the collection contains the specified FormalParameter
.
name | the name of FormalParameter whose presence in the collection is to be tested |
---|
FormalParameter
.
Returns the number of formal parameters in the collection.
Retrives a specific formal parameter by its name.
name | the name of the FormalParameter object. |
---|
FormalParameter
object in the collection with the given name.IllegalArgumentException | thrown if no formal parameter has the given name. |
---|
Retrieves a specific formal paramter by its numeric index.
index | the index of the object in collection. |
---|
FormalParameter
object in the collection with the given index.IndexOutOfBoundsException | thrown if the index is invalid. |
---|