Skip to end of banner
Go to start of banner

getFieldOptions

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Availability

This routine is available starting with katl-commons 3.0.

Syntax

getFieldOptions(projectKey, issueType, fieldName)

Description

Returns a string array representing the list of options for a custom field.

This routine only handles custom fields of the following types: single select, multi select, radio buttons and checkboxes, otherwise throws an exception.

Parameters

Parameter name

Type

Required

Description

project key

String

Yes

Key of the selected project.

issue type

String

Yes

Type of the selected issue.

field name

String

Yes

Name of the selected field.

Return type

string[]

The returned string array represents the list of options for a custom field.

Example

getFieldOptions("DEMO", "Bug", "RB - BUG");

Gets the options for a custom field named "RB - BUG", that exists in the project with the key "DEMO" and has its issue type "BUG".

See also

 

  • No labels