public enum AliasType extends Enum<AliasType>
Enum Constant and Description |
---|
CERT
This alias is used to store a public certificate
|
KEY
This alias is used to store a key pair
|
Modifier and Type | Method and Description |
---|---|
static AliasType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AliasType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static AliasType[] values()
for (AliasType c : AliasType.values()) System.out.println(c);
public static AliasType 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 © 2017 Nuxeo. All rights reserved.