Package com.databricks.sdk.service.jobs
Enum GitSourceGitProvider
- java.lang.Object
-
- java.lang.Enum<GitSourceGitProvider>
-
- com.databricks.sdk.service.jobs.GitSourceGitProvider
-
- All Implemented Interfaces:
Serializable
,Comparable<GitSourceGitProvider>
@Generated public enum GitSourceGitProvider extends Enum<GitSourceGitProvider>
Unique identifier of the service used to host the Git repository. The value is case insensitive.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description awsCodeCommit
azureDevOpsServices
bitbucketCloud
bitbucketServer
gitHub
gitHubEnterprise
gitLab
gitLabEnterpriseEdition
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GitSourceGitProvider
valueOf(String name)
Returns the enum constant of this type with the specified name.static GitSourceGitProvider[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
awsCodeCommit
public static final GitSourceGitProvider awsCodeCommit
-
azureDevOpsServices
public static final GitSourceGitProvider azureDevOpsServices
-
bitbucketCloud
public static final GitSourceGitProvider bitbucketCloud
-
bitbucketServer
public static final GitSourceGitProvider bitbucketServer
-
gitHub
public static final GitSourceGitProvider gitHub
-
gitHubEnterprise
public static final GitSourceGitProvider gitHubEnterprise
-
gitLab
public static final GitSourceGitProvider gitLab
-
gitLabEnterpriseEdition
public static final GitSourceGitProvider gitLabEnterpriseEdition
-
-
Method Detail
-
values
public static GitSourceGitProvider[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GitSourceGitProvider c : GitSourceGitProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GitSourceGitProvider valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-