public enum VcsGitProvider extends java.lang.Enum<VcsGitProvider>
| Enum Constant and Description |
|---|
ARTIFACTORY |
BITBUCKET |
CUSTOM |
GITHUB |
STASH |
| Modifier and Type | Method and Description |
|---|---|
static VcsGitProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VcsGitProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VcsGitProvider ARTIFACTORY
public static final VcsGitProvider BITBUCKET
public static final VcsGitProvider CUSTOM
public static final VcsGitProvider GITHUB
public static final VcsGitProvider STASH
public static VcsGitProvider[] values()
for (VcsGitProvider c : VcsGitProvider.values()) System.out.println(c);
public static VcsGitProvider valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null