com.microstrategy.web.tasks.TaskMetadata |
![]() |
This interface provide information about a specific Task. This "metadata" is used for diagnostic and administrative purposes.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract String |
getDescription()
Returns the textual description of the purpose of this Task.
| ||||||||||
abstract int |
getParameterCount()
Returns the number of parameters that this Task recognizes.
| ||||||||||
abstract TaskParameterMetadata |
getParameterMetadata(int i)
Returns the metadata for a specific Task parameter.
| ||||||||||
abstract TaskParameterMetadata |
getParameterMetadata(String paramName)
Returns the metadata for a specific Task parameter.
| ||||||||||
abstract boolean |
hasParameterMetadata(String paramName)
Returns whether the metadata for a specific named Task parameter exists.
|
Returns the textual description of the purpose of this Task.
Returns the number of parameters that this Task recognizes.
Returns the metadata for a specific Task parameter.
i | The index of the Task parameter to inspect. |
---|
TaskParameterMetadata
object that provides
information about the parameter.
Returns the metadata for a specific Task parameter.
paramName | The name of the Task parameter to inspect. |
---|
TaskParameterMetadata
object that provides
information about the parameter.
Returns whether the metadata for a specific named Task parameter exists.
paramName | The name of the parameter to check for. |
---|