public enum CredentialsSource extends Enum<CredentialsSource>
Enum Constant and Description |
---|
CUSTOM
Credentials are stored within configuration
|
SHARED_CREDENTIALS
Configuration refers to shared credentials entity
|
Modifier and Type | Method and Description |
---|---|
static CredentialsSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialsSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialsSource SHARED_CREDENTIALS
public static final CredentialsSource CUSTOM
public static CredentialsSource[] values()
for (CredentialsSource c : CredentialsSource.values()) System.out.println(c);
public static CredentialsSource 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 © 2017 Atlassian Software Systems Pty Ltd. All rights reserved.