Interface ExternalCustomFieldValue
- All Known Implementing Classes:
ExternalCustomFieldValueImpl
@PublicApi
public interface ExternalCustomFieldValue
Represents a custom field value that has been taken from backup data.
- Since:
- v3.13
-
Method Summary
Modifier and TypeMethodDescriptionReturns the ID of the CustomField that this value is stored for.getId()Returns the ID of the CustomFieldValue.Returns the Issue ID that this value was stored against.Returns the Parent Key for this Custom Field Value.getValue()Returns the String representation of the value that is stored.
-
Method Details
-
getId
String getId()Returns the ID of the CustomFieldValue.- Returns:
- the ID of the CustomFieldValue.
-
getCustomFieldId
String getCustomFieldId()Returns the ID of the CustomField that this value is stored for.- Returns:
- the ID of the CustomField that this value is stored for.
-
getIssueId
String getIssueId()Returns the Issue ID that this value was stored against.- Returns:
- the Issue ID that this value was stored against.
-
getParentKey
String getParentKey()Returns the Parent Key for this Custom Field Value. This is normally null, but the "Cascading Select" Custom Field will store the parent Option ID in this field.- Returns:
- the Parent Key for this Custom Field Value.
-
getValue
String getValue()Returns the String representation of the value that is stored.- Returns:
- the String representation of the value that is stored.
-
getDateValue
String getDateValue() -
getNumberValue
String getNumberValue() -
getStringValue
String getStringValue() -
getTextValue
String getTextValue()
-