Uses of Class
org.gitlab4j.api.Constants.EpicOrderBy
-
Packages that use Constants.EpicOrderBy Package Description org.gitlab4j.api -
-
Uses of Constants.EpicOrderBy in org.gitlab4j.api
Methods in org.gitlab4j.api that return Constants.EpicOrderBy Modifier and Type Method Description static Constants.EpicOrderBy
Constants.EpicOrderBy. forValue(String value)
static Constants.EpicOrderBy
Constants.EpicOrderBy. valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.EpicOrderBy[]
Constants.EpicOrderBy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.gitlab4j.api with parameters of type Constants.EpicOrderBy Modifier and Type Method Description List<Epic>
EpicsApi. getEpics(Object groupIdOrPath, Integer authorId, String labels, Constants.EpicOrderBy orderBy, Constants.SortOrder sortOrder, String search)
Gets all epics of the requested group and its subgroups.Pager<Epic>
EpicsApi. getEpics(Object groupIdOrPath, Integer authorId, String labels, Constants.EpicOrderBy orderBy, Constants.SortOrder sortOrder, String search, int itemsPerPage)
Get a Pager of all epics of the requested group and its subgroups.List<Epic>
EpicsApi. getEpics(Object groupIdOrPath, Integer authorId, String labels, Constants.EpicOrderBy orderBy, Constants.SortOrder sortOrder, String search, int page, int perPage)
Gets all epics of the requested group and its subgroups using the specified page and per page setting.Stream<Epic>
EpicsApi. getEpicsStream(Object groupIdOrPath, Integer authorId, String labels, Constants.EpicOrderBy orderBy, Constants.SortOrder sortOrder, String search)
Gets all epics of the requested group and its subgroups as a Stream.
-