java.lang.Object | |||
↳ | com.atlassian.jira.issue.fields.AbstractField | ||
↳ | com.atlassian.jira.issue.fields.NavigableFieldImpl | ||
↳ | com.atlassian.jira.issue.fields.CreatedSystemField |
Copyright (c) 2002-2004 All rights reserved.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface com.atlassian.jira.issue.fields.NavigableField |
[Expand]
Inherited Fields | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.jira.issue.fields.NavigableFieldImpl
| |||||||||||||||||
From class
com.atlassian.jira.issue.fields.AbstractField
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return
SearchHandler for the field. | |||||||||||
Returns lower level Information about the field.
| |||||||||||
Return a 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.
| |||||||||||
Return a description of the shape of this field when represented as JSON.
| |||||||||||
Return a list of Lucene SortFields to be used for sorting search results.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.jira.issue.fields.NavigableFieldImpl
| |||||||||||||||||||||||||||||||||
From class
com.atlassian.jira.issue.fields.AbstractField
| |||||||||||||||||||||||||||||||||
From class java.lang.Object | |||||||||||||||||||||||||||||||||
From interface com.atlassian.jira.issue.fields.Field | |||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.issue.fields.NavigableField
| |||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.issue.fields.SearchableField
| |||||||||||||||||||||||||||||||||
From interface
com.atlassian.jira.issue.fields.rest.RestAwareField
| |||||||||||||||||||||||||||||||||
From interface
java.lang.Comparable
|
Return SearchHandler
for the field. This object tells JIRA how to search for values within the field.
null
when no searcher
is associated with the field. This will mainly happen when a customfield is configured to have no
searcher.
Returns lower level Information about the field. This information contains allowed values and/or the autocomplete url
fieldTypeInfoContext | the FieldTypeInfoContext contains context information that is relevant to generate the FieldTypeInfo
|
---|
Return a 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.
issue | to get field data from |
---|---|
renderedVersionRequired | whether the use requested the return of rendered/pretty data as well as raw data |
fieldLayoutItem | field layout for this field. Will only be supplied if the field is also an ordereable field. |
Return a description of the shape of this field when represented as JSON.
Return a list of Lucene SortFields to be used for sorting search results. Using this method allows the field to specify the most performant way to perform a search. If a field can be sorted directly using the term in the index then this should just return a singleton list with the sort field.
return Collections.singletonList(new SortField(fieldName, sortOrder));
getSortComparatorSource()
If you implement this method there is no need to implement getSortComparatorSource()
.