Class NumberCFType
java.lang.Object
com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType<T,T>
com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType<Double>
com.atlassian.jira.issue.customfields.impl.NumberCFType
- All Implemented Interfaces:
ProjectImportableCustomField
,CustomFieldType<Double,
,Double> SortableCustomField<Double>
,ExportableCustomFieldType
,RestAwareCustomFieldType
,RestCustomFieldTypeOperations
- Direct Known Subclasses:
ImportIdLinkCFType
public class NumberCFType
extends AbstractSingleFieldType<Double>
implements SortableCustomField<Double>, ProjectImportableCustomField, RestAwareCustomFieldType, RestCustomFieldTypeOperations, ExportableCustomFieldType
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType
AbstractCustomFieldType.VisitorBase<X>
-
Field Summary
Fields inherited from class com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType
customFieldValuePersister, FIELD_TYPE_DATE, FIELD_TYPE_NUMBER, FIELD_TYPE_STRING, FIELD_TYPE_TEXT, genericConfigManager, log
Fields inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType
DEFAULT_VALUE_TYPE, RESOURCE_PREVIEW
-
Constructor Summary
ConstructorsConstructorDescriptionNumberCFType
(CustomFieldValuePersister customFieldValuePersister, DoubleConverter doubleConverter, GenericConfigManager genericConfigManager) -
Method Summary
Modifier and TypeMethodDescriptionint
compare
(Double customFieldObjectValue1, Double customFieldObjectValue2, FieldConfig fieldConfig) Compares the two custom field objects.getChangelogValue
(CustomField field, Double value) Returns a values to be stored in the change log, example is the id of the changed item.protected PersistenceFieldType
Type of database field needed to store this field.protected Object
getDbValueFromObject
(Double customFieldObject) Returns the database representation of the Java object as stored for that CustomField.getFieldTypeInfo
(FieldTypeInfoContext fieldTypeInfoContext) Returns lower level Information about the field.getJsonFromIssue
(CustomField field, Issue issue, boolean renderedVersionRequested, FieldLayoutItem fieldLayoutItem) Return a JsonData representation of the field valuegetJsonSchema
(CustomField customField) Return a description of the shape of this field when represented as JSON.Returns an instance ofNonNullCustomFieldProvider
that Jira will use to optimize indexing performance.protected Double
getObjectFromDbValue
(Object databaseValue) Returns the Transport Object for the given Custom Field value as represented by the value stored in the databaseReturns the object that will perform the actual project import functions for the custom field type.getRepresentationFromIssue
(Issue issue, CustomFieldExportContext context) Get the custom field representation of the issue, this object contains the column headers and values for each of theFieldExportPart
.getRestFieldOperation
(CustomField field) Returns the RestFieldOperationsHandler for this field.getSingularObjectFromString
(String string) Returns a Singular Object, given the string value as passed by the presentation tier.getStringFromSingularObject
(Double customFieldObject) Returns theString
representation of a single value within the CustomFieldType.getVelocityParameters
(Issue issue, CustomField field, FieldLayoutItem fieldLayoutItem) The custom field may wish to pass parameters to the velocity context beyond the getValueFromIssue methods (eg managers).Methods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractSingleFieldType
createValue, getDefaultValue, getJsonDefaultValue, getStringValueFromCustomFieldParams, getValueFromCustomFieldParams, getValueFromIssue, getValueFromIssue, remove, setDefaultValue, updateValue, validateFromParams
Methods inherited from class com.atlassian.jira.issue.customfields.impl.AbstractCustomFieldType
assertObjectImplementsType, availableForBulkEdit, getChangelogString, getConfigurationItemTypes, getDescription, getDescriptor, getI18nBean, getKey, getName, getRelatedIndexers, getVelocityParameters, init, isRenderable, valuesEqual
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.atlassian.jira.issue.customfields.CustomFieldType
areAllRequiredParametersPresent, getCloneOptionConfiguration, getCloneValue, isUserInputRequiredForMove
Methods inherited from interface com.atlassian.jira.issue.fields.rest.RestCustomFieldTypeOperations
getJsonDefaultValue
-
Constructor Details
-
NumberCFType
public NumberCFType(CustomFieldValuePersister customFieldValuePersister, DoubleConverter doubleConverter, GenericConfigManager genericConfigManager)
-
-
Method Details
-
getDatabaseType
Description copied from class:AbstractSingleFieldType
Type of database field needed to store this field.- Specified by:
getDatabaseType
in classAbstractSingleFieldType<Double>
- Returns:
- One of the predefined
PersistenceFieldType
types.
-
getStringFromSingularObject
Description copied from interface:CustomFieldType
Returns theString
representation of a single value within the CustomFieldType. This is the value that is passed to the presentation tier for editing. For single CustomFieldTypes the Singular Object is the same as a Transport Object. However, for multi-dimensional CustomFieldTypes, the Singular Object is the Object contained within theCollection
orMap
- Specified by:
getStringFromSingularObject
in interfaceCustomFieldType<Double,
Double> - Parameters:
customFieldObject
- the object- Returns:
- String representation of the Object
-
getSingularObjectFromString
Description copied from interface:CustomFieldType
Returns a Singular Object, given the string value as passed by the presentation tier. Throws FieldValidationException if the string is an invalid representation of the Object.- Specified by:
getSingularObjectFromString
in interfaceCustomFieldType<Double,
Double> - Parameters:
string
- the String- Returns:
- singularObject instance
- Throws:
FieldValidationException
- if the string is an invalid representation of the Object.
-
getChangelogValue
Description copied from interface:CustomFieldType
Returns a values to be stored in the change log, example is the id of the changed item.- Specified by:
getChangelogValue
in interfaceCustomFieldType<Double,
Double> - Overrides:
getChangelogValue
in classAbstractSingleFieldType<Double>
- Parameters:
field
- CustomField that the value belongs tovalue
- Transport Object representing the value instance of the CustomField- Returns:
- Change log value.
-
compare
public int compare(@Nonnull Double customFieldObjectValue1, @Nonnull Double customFieldObjectValue2, FieldConfig fieldConfig) Description copied from interface:SortableCustomField
Compares the two custom field objects.- Specified by:
compare
in interfaceSortableCustomField<Double>
- Parameters:
customFieldObjectValue1
- Never nullcustomFieldObjectValue2
- Never null- Returns:
- 0, 1 or -1
-
getDbValueFromObject
Description copied from class:AbstractSingleFieldType
Returns the database representation of the Java object as stored for that CustomField. (eg. ProjectId if the Value represents a project). Must be compatable with type returned byAbstractSingleFieldType.getDatabaseType()
- Specified by:
getDbValueFromObject
in classAbstractSingleFieldType<Double>
- Parameters:
customFieldObject
- the Transport Object- Returns:
- String, Double or Date
-
getObjectFromDbValue
protected Double getObjectFromDbValue(@Nonnull Object databaseValue) throws FieldValidationException Description copied from class:AbstractSingleFieldType
Returns the Transport Object for the given Custom Field value as represented by the value stored in the database- Specified by:
getObjectFromDbValue
in classAbstractSingleFieldType<Double>
- Parameters:
databaseValue
- - String, Double or Date objects as returned fromAbstractSingleFieldType.getDbValueFromObject(Object)
- Returns:
- Domain object or GenericValue
- Throws:
FieldValidationException
- if field validation fails.
-
getVelocityParameters
@Nonnull public Map<String,Object> getVelocityParameters(Issue issue, CustomField field, FieldLayoutItem fieldLayoutItem) Description copied from interface:CustomFieldType
The custom field may wish to pass parameters to the velocity context beyond the getValueFromIssue methods (eg managers).The values are added to the context for all velocity views (edit, search, view, xml)
- Specified by:
getVelocityParameters
in interfaceCustomFieldType<Double,
Double> - Overrides:
getVelocityParameters
in classAbstractCustomFieldType<Double,
Double> - Parameters:
issue
- The issue currently in context (Note: this will be null in cases like 'default value')field
- CustomFieldfieldLayoutItem
- FieldLayoutItem- Returns:
- A
Map
of parameters to add to the velocity context, or an empty Map otherwise (never null)
-
getProjectImporter
Description copied from interface:ProjectImportableCustomField
Returns the object that will perform the actual project import functions for the custom field type.- Specified by:
getProjectImporter
in interfaceProjectImportableCustomField
- Returns:
- the object that will perform the actual project import functions for the custom field type.
-
accept
- Overrides:
accept
in classAbstractSingleFieldType<Double>
-
getRepresentationFromIssue
Description copied from interface:ExportableCustomFieldType
Get the custom field representation of the issue, this object contains the column headers and values for each of theFieldExportPart
.- Specified by:
getRepresentationFromIssue
in interfaceExportableCustomFieldType
- Parameters:
issue
- to get the representation forcontext
- which contains information such as the i18nHelper and field- Returns:
- the exportable parts of this issue
-
getNonNullCustomFieldProvider
Description copied from interface:CustomFieldType
Returns an instance ofNonNullCustomFieldProvider
that Jira will use to optimize indexing performance.- Specified by:
getNonNullCustomFieldProvider
in interfaceCustomFieldType<Double,
Double>
-
getFieldTypeInfo
Description copied from interface:RestAwareCustomFieldType
Returns lower level Information about the field. This information contains allowed values and/or the autocomplete url- Specified by:
getFieldTypeInfo
in interfaceRestAwareCustomFieldType
- Parameters:
fieldTypeInfoContext
- context information for generating theFieldTypeInfo
.- Returns:
- Low level information about the field.
-
getJsonSchema
Description copied from interface:RestAwareCustomFieldType
Return a description of the shape of this field when represented as JSON.- Specified by:
getJsonSchema
in interfaceRestAwareCustomFieldType
-
getJsonFromIssue
public FieldJsonRepresentation getJsonFromIssue(CustomField field, Issue issue, boolean renderedVersionRequested, @Nullable FieldLayoutItem fieldLayoutItem) Description copied from interface:RestAwareCustomFieldType
Return a JsonData representation of the field value- Specified by:
getJsonFromIssue
in interfaceRestAwareCustomFieldType
- Parameters:
field
- configuration of the current fieldissue
- to get field data fromrenderedVersionRequested
- whether the use requested the return of rendered/pretty data as well as raw datafieldLayoutItem
- field layout for this field.- Returns:
- FieldJsonDataPair containing a json representation of the raw data for this field, and if required, a json representation of the rendered data for easy display.
-
getRestFieldOperation
Description copied from interface:RestCustomFieldTypeOperations
Returns the RestFieldOperationsHandler for this field.- Specified by:
getRestFieldOperation
in interfaceRestCustomFieldTypeOperations
- Parameters:
field
- the Custom Field- Returns:
- the RestFieldOperationsHandler for this field.
-