Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
20e122b2
Commit
20e122b2
authored
Sep 14, 2021
by
Michaël van de Giessen
Browse files
#755 added missing newly supported packageType's (afaik)
parent
37617ec3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/PackageType.java
View file @
20e122b2
...
@@ -7,7 +7,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
...
@@ -7,7 +7,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
public
enum
PackageType
{
public
enum
PackageType
{
MAVEN
,
NPM
;
MAVEN
,
NPM
,
CONAN
,
PYPI
,
COMPOSER
,
NUGET
,
HELM
,
GOLANG
,
GENERIC
;
private
static
JacksonJsonEnumHelper
<
PackageType
>
enumHelper
=
new
JacksonJsonEnumHelper
<>(
PackageType
.
class
);
private
static
JacksonJsonEnumHelper
<
PackageType
>
enumHelper
=
new
JacksonJsonEnumHelper
<>(
PackageType
.
class
);
...
@@ -25,4 +25,4 @@ public enum PackageType {
...
@@ -25,4 +25,4 @@ public enum PackageType {
public
String
toString
()
{
public
String
toString
()
{
return
(
enumHelper
.
toString
(
this
));
return
(
enumHelper
.
toString
(
this
));
}
}
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment