public enum SecretStoreType extends Enum<SecretStoreType>
| Enum Constant and Description |
|---|
AES_ONLY_ALGORITHM |
ALGORITHM |
AWS |
BASE64 |
CUSTOM |
NONE |
VAULT |
| Modifier and Type | Method and Description |
|---|---|
static SecretStoreType |
of(String className) |
static SecretStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecretStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecretStoreType BASE64
public static final SecretStoreType ALGORITHM
public static final SecretStoreType AES_ONLY_ALGORITHM
public static final SecretStoreType AWS
public static final SecretStoreType VAULT
public static final SecretStoreType NONE
public static final SecretStoreType CUSTOM
public static SecretStoreType[] values()
for (SecretStoreType c : SecretStoreType.values()) System.out.println(c);
public static SecretStoreType 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 nullpublic static SecretStoreType of(String className)
Copyright © 2023 Atlassian. All rights reserved.