public static enum KeyChain.KeyPurpose extends java.lang.Enum<KeyChain.KeyPurpose>
| Enum Constant and Description | 
|---|
AUTHENTICATION  | 
CHANGE  | 
RECEIVE_FUNDS  | 
REFUND  | 
| Modifier and Type | Method and Description | 
|---|---|
static KeyChain.KeyPurpose | 
valueOf(java.lang.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(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