com.atlassian.jira.issue.customfields
Interface SortableCustomField<T>

All Known Implementing Classes:
AbstractMultiCFType, CalculatedCFType, CascadingSelectCFType, DateCFType, DateTimeCFType, ImportIdLinkCFType, MultiGroupCFType, MultiSelectCFType, MultiUserCFType, NumberCFType, ProjectCFType, ReadOnlyCFType, RenderableTextCFType, SelectCFType, TextAreaCFType, TextCFType, URLCFType, UserCFType, VersionCFType

public interface SortableCustomField<T>

Allow a custom field to be natively sortable in the Issue Navigator. Warning: This sort method is a fallback. Generally custom fields will have an associated CustomFieldSearcher, whose SortableCustomFieldSearcher.getSorter(com.atlassian.jira.issue.fields.CustomField) method is responsible for sorting. This interface's compare() is only called if no searcher is associated with a custom field. It is an order of magnitude slower than SortableCustomFieldSearcher.

See Also:
SortableCustomFieldSearcher

Method Summary
 int compare(T customFieldObjectValue1, T customFieldObjectValue2, FieldConfig fieldConfig)
          Compares the two custom field objects.
 

Method Detail

compare

int compare(T customFieldObjectValue1,
            T customFieldObjectValue2,
            FieldConfig fieldConfig)
Compares the two custom field objects.

Parameters:
customFieldObjectValue1 - Never null
customFieldObjectValue2 - Never null
fieldConfig -
Returns:
0, 1 or -1


Copyright © 2002-2009 Atlassian. All Rights Reserved.