Uses of Class
org.gitlab4j.api.models.Note.OrderBy
-
Packages that use Note.OrderBy Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of Note.OrderBy in org.gitlab4j.api
Methods in org.gitlab4j.api with parameters of type Note.OrderBy Modifier and Type Method Description List<Note>
NotesApi. getMergeRequestNotes(Object projectIdOrPath, Integer mergeRequestIid, Constants.SortOrder sortOrder, Note.OrderBy orderBy)
Gets a list of all notes for a single merge request.Pager<Note>
NotesApi. getMergeRequestNotes(Object projectIdOrPath, Integer mergeRequestIid, Constants.SortOrder sortOrder, Note.OrderBy orderBy, int itemsPerPage)
Get a Pager of all notes for a single merge requestList<Note>
NotesApi. getMergeRequestNotes(Object projectIdOrPath, Integer mergeRequestIid, Constants.SortOrder sortOrder, Note.OrderBy orderBy, int page, int perPage)
Gets a list of all notes for a single merge request using the specified page and per page settings.Stream<Note>
NotesApi. getMergeRequestNotesStream(Object projectIdOrPath, Integer mergeRequestIid, Constants.SortOrder sortOrder, Note.OrderBy orderBy)
Gets a Stream of all notes for a single merge request. -
Uses of Note.OrderBy in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Note.OrderBy Modifier and Type Method Description static Note.OrderBy
Note.OrderBy. forValue(String value)
static Note.OrderBy
Note.OrderBy. valueOf(String name)
Returns the enum constant of this type with the specified name.static Note.OrderBy[]
Note.OrderBy. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-