com.polarion.alm.tracker.workflow.IArguments
FIELDS
| Modifiers and Type | Name | Description |
|---|---|---|
| public, static, final, String | ATTR_FIELD_NAME | Name of the field to check. |
METHODS
| Modifiers and Type | Name | Description |
|---|---|---|
| String | getAsString(String) | Returns the value of a parameter as String. |
| String | getAsString(String,String) | Returns the value of a parameter as String. |
| int | getAsInt(String) | Returns the value of a parameter as int. |
| int | getAsInt(String,int) | Returns the value of a parameter as int. |
| boolean | getAsBoolean(String) | Returns the value of argName as boolean. |
| boolean | getAsBoolean(String,boolean) | Returns the value of argName as boolean. |
| Set | getAsSet(String) | Treats the given argument as comma-separated list of Strings and turns such a representation into set. |
| Set | getAsSetOptional(String) | Same as {@link #getAsSet(String)} , but in case of non existing argument an empty set is returned. |
| String | getFieldName() | Returns the id of a filed to work with by checking several standard arguments. For backward compatibility multiple attribute names are checked, in the following order:
|
| String | getFieldArgumentName() | Returns the name of the argument the value of which is returned by {@link #getFieldName()} . |
| Map | getArguments() | Returns all the arguments as Map. |
| Map | getArgumentsWithPrefix(String) | Returns arguments started with prefix as Map. |
Back to Index