public static enum KeyChain.KeyPurpose extends Enum<KeyChain.KeyPurpose>
Enum Constant and Description |
---|
AUTHENTICATION |
CHANGE |
RECEIVE_FUNDS |
REFUND |
Modifier and Type | Method and Description |
---|---|
static KeyChain.KeyPurpose |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyChain.KeyPurpose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyChain.KeyPurpose RECEIVE_FUNDS
public static final KeyChain.KeyPurpose CHANGE
public static final KeyChain.KeyPurpose REFUND
public static final KeyChain.KeyPurpose AUTHENTICATION
public static KeyChain.KeyPurpose[] values()
for (KeyChain.KeyPurpose c : KeyChain.KeyPurpose.values()) System.out.println(c);
public static KeyChain.KeyPurpose 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 © 2016. All rights reserved.