public static enum CredentialOptions.CredentialType extends Enum<CredentialOptions.CredentialType>
Enum Constant and Description |
---|
DefaultCredentials |
None |
P12 |
SuppliedCredentials |
SuppliedJson |
Modifier and Type | Method and Description |
---|---|
static CredentialOptions.CredentialType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialOptions.CredentialType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialOptions.CredentialType DefaultCredentials
public static final CredentialOptions.CredentialType P12
public static final CredentialOptions.CredentialType SuppliedCredentials
public static final CredentialOptions.CredentialType SuppliedJson
public static final CredentialOptions.CredentialType None
public static CredentialOptions.CredentialType[] values()
for (CredentialOptions.CredentialType c : CredentialOptions.CredentialType.values()) System.out.println(c);
public static CredentialOptions.CredentialType 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 null