public enum IdentityType extends Enum<IdentityType>
| Enum Constant and Description |
|---|
DIR |
ENVVAR |
FILE |
NONE |
PKCS11 |
PKCS12 |
| Modifier and Type | Method and Description |
|---|---|
static IdentityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentityType NONE
public static final IdentityType FILE
public static final IdentityType DIR
public static final IdentityType PKCS11
public static final IdentityType PKCS12
public static final IdentityType ENVVAR
public static IdentityType[] values()
for (IdentityType c : IdentityType.values()) System.out.println(c);
public static IdentityType 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 © 2014–2022 The Apache Software Foundation. All rights reserved.