Interface IssueNotes
- All Known Subinterfaces:
ModifiableIssueNotes
public interface IssueNotes
- Since:
- 10.0.146
-
Method Summary
Modifier and TypeMethodDescriptiongetNotes()Returns all notes as a list ordered by ascending date.Returns a list of notes matching the given user ordered by ascending date.intReturns the total number of all notes in the collection.
-
Method Details
-
getNotesCount
int getNotesCount()Returns the total number of all notes in the collection.- Returns:
- the total number of all notes in the collection.
- Since:
- 10.0.146
-
getNotes
Returns all notes as a list ordered by ascending date.- Returns:
- all notes as List ordered by ascending date
- Since:
- 10.0.146
-
getNotes
Returns a list of notes matching the given user ordered by ascending date.- Parameters:
user- the user to filter the list of notes- Returns:
- a List of notes matching the given user ordered by ascending date
- Since:
- 10.0.146
-