public static enum Credential.CredType extends Enum<Credential.CredType>
Enum Constant and Description |
---|
Anonymous |
Certificate |
HWToken |
NFC |
None |
Reserved |
SIM |
Softoken |
Username |
USIM |
VendorSpecific |
Modifier and Type | Method and Description |
---|---|
static Credential.CredType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Credential.CredType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Credential.CredType Reserved
public static final Credential.CredType SIM
public static final Credential.CredType USIM
public static final Credential.CredType NFC
public static final Credential.CredType HWToken
public static final Credential.CredType Softoken
public static final Credential.CredType Certificate
public static final Credential.CredType Username
public static final Credential.CredType None
public static final Credential.CredType Anonymous
public static final Credential.CredType VendorSpecific
public static Credential.CredType[] values()
for (Credential.CredType c : Credential.CredType.values()) System.out.println(c);
public static Credential.CredType 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