public static enum CredentialsManager.ResponseType extends java.lang.Enum<CredentialsManager.ResponseType>
Enum Constant and Description |
---|
CANCEL |
GENERATE_AND_STORE |
USE_INPUT |
Modifier and Type | Method and Description |
---|---|
static CredentialsManager.ResponseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CredentialsManager.ResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialsManager.ResponseType USE_INPUT
public static final CredentialsManager.ResponseType GENERATE_AND_STORE
public static final CredentialsManager.ResponseType CANCEL
public static CredentialsManager.ResponseType[] values()
for (CredentialsManager.ResponseType c : CredentialsManager.ResponseType.values()) System.out.println(c);
public static CredentialsManager.ResponseType 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