Uses of Class
org.gitlab4j.api.Constants.GroupOrderBy
-
Packages that use Constants.GroupOrderBy Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of Constants.GroupOrderBy in org.gitlab4j.api
Methods in org.gitlab4j.api that return Constants.GroupOrderBy Modifier and Type Method Description static Constants.GroupOrderBy
Constants.GroupOrderBy. forValue(String value)
static Constants.GroupOrderBy
Constants.GroupOrderBy. valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.GroupOrderBy[]
Constants.GroupOrderBy. 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.GroupOrderBy Modifier and Type Method Description List<Group>
GroupApi. getSubGroups(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned)
Get a list of visible direct subgroups in this group.Pager<Group>
GroupApi. getSubGroups(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned, int itemsPerPage)
Get a Pager of visible direct subgroups in this group.List<Group>
GroupApi. getSubGroups(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned, int page, int perPage)
Get a list of visible direct subgroups in this group.Stream<Group>
GroupApi. getSubGroupsStream(Object groupIdOrPath, List<Integer> skipGroups, Boolean allAvailable, String search, Constants.GroupOrderBy orderBy, Constants.SortOrder sortOrder, Boolean statistics, Boolean owned)
Get a Stream of visible direct subgroups in this group. -
Uses of Constants.GroupOrderBy in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models with parameters of type Constants.GroupOrderBy Modifier and Type Method Description GroupFilter
GroupFilter. withOrderBy(Constants.GroupOrderBy orderBy)
Return groups ordered by id, name, path, created_at, updated_at, or last_activity_at fields.
-