Uses of Class
org.gitlab4j.api.models.Namespace
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of Namespace in org.gitlab4j.api
Methods in org.gitlab4j.api that return types with arguments of type Namespace Modifier and Type Method Description List<Namespace>
NamespaceApi. findNamespaces(String query)
Get all namespaces that match a string in their name or path.Pager<Namespace>
NamespaceApi. findNamespaces(String query, int itemsPerPage)
Get a Pager of all namespaces that match a string in their name or path.List<Namespace>
NamespaceApi. findNamespaces(String query, int page, int perPage)
Get all namespaces that match a string in their name or path in the specified page range.Stream<Namespace>
NamespaceApi. findNamespacesStream(String query)
Get all namespaces that match a string in their name or path as a Stream.List<Namespace>
NamespaceApi. getNamespaces()
Get a list of the namespaces of the authenticated user.Pager<Namespace>
NamespaceApi. getNamespaces(int itemsPerPage)
Get a Pager of the namespaces of the authenticated user.List<Namespace>
NamespaceApi. getNamespaces(int page, int perPage)
Get a list of the namespaces of the authenticated user.Stream<Namespace>
NamespaceApi. getNamespacesStream()
Get a Stream of the namespaces of the authenticated user. -
Uses of Namespace in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Namespace Modifier and Type Method Description Namespace
Project. getNamespace()
Namespace
Namespace. withFullPath(String fullPath)
Namespace
Namespace. withId(Integer id)
Namespace
Namespace. withKind(String kind)
Namespace
Namespace. withName(String name)
Namespace
Namespace. withPath(String path)
Methods in org.gitlab4j.api.models with parameters of type Namespace Modifier and Type Method Description void
Project. setNamespace(Namespace namespace)
Project
Project. withNamespace(Namespace namespace)