com.polarion.alm.tracker.workflow.IArguments


FIELDS
Modifiers and TypeNameDescription
public, static, final, String ATTR_FIELD_NAME Name of the field to check.
METHODS
Modifiers and TypeNameDescription
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:
  1. {@link #ATTR_FIELD_NAME} ( {@value #ATTR_FIELD_NAME} )
  2. {@link #ATTR_FIELD} ( {@value #ATTR_FIELD} )
  3. {@link #ATTR_FEATURE} ( {@value #ATTR_FEATURE} )
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