public enum TransitKeyType extends Enum<TransitKeyType>
VaultTransitOperations
Enum Constant and Description |
---|
ENCRYPTION_KEY |
HMAC_KEY |
SIGNING_KEY |
Modifier and Type | Method and Description |
---|---|
static TransitKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransitKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransitKeyType ENCRYPTION_KEY
public static final TransitKeyType SIGNING_KEY
public static final TransitKeyType HMAC_KEY
public static TransitKeyType[] values()
for (TransitKeyType c : TransitKeyType.values()) System.out.println(c);
public static TransitKeyType 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–2017 Pivotal Software, Inc.. All rights reserved.