public static enum CryptoType.TYPE extends Enum<CryptoType.TYPE>
Enum Constant and Description |
---|
ALIAS |
ENDPOINT |
ISSUER_SERIAL |
SKI_BYTES |
SUBJECT_DN |
THUMBPRINT_SHA1 |
Modifier and Type | Method and Description |
---|---|
static CryptoType.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoType.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoType.TYPE ISSUER_SERIAL
public static final CryptoType.TYPE THUMBPRINT_SHA1
public static final CryptoType.TYPE SKI_BYTES
public static final CryptoType.TYPE SUBJECT_DN
public static final CryptoType.TYPE ALIAS
public static final CryptoType.TYPE ENDPOINT
public static CryptoType.TYPE[] values()
for (CryptoType.TYPE c : CryptoType.TYPE.values()) System.out.println(c);
public static CryptoType.TYPE 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 © 2021 JBoss by Red Hat. All rights reserved.