public enum AccountType extends Enum<AccountType>
| Enum Constant and Description |
|---|
AWS |
AZURE |
BitBucket |
Email |
FX_Issues |
GCP |
Git |
GitHub |
GitLab |
Jira |
Local |
Microsoft_TFS_Git |
Microsoft_VSTS_Git |
Self_Hosted |
Slack |
| Modifier and Type | Method and Description |
|---|---|
static AccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountType AWS
public static final AccountType AZURE
public static final AccountType GCP
public static final AccountType BitBucket
public static final AccountType GitHub
public static final AccountType Git
public static final AccountType GitLab
public static final AccountType Self_Hosted
public static final AccountType Microsoft_TFS_Git
public static final AccountType Microsoft_VSTS_Git
public static final AccountType Slack
public static final AccountType Email
public static final AccountType Local
public static final AccountType Jira
public static final AccountType FX_Issues
public static AccountType[] values()
for (AccountType c : AccountType.values()) System.out.println(c);
public static AccountType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.