Enum Secret.SecretType
- java.lang.Object
-
- java.lang.Enum<Secret.SecretType>
-
- us.abstracta.jmeter.javadsl.azure.api.Secret.SecretType
-
- All Implemented Interfaces:
Serializable,Comparable<Secret.SecretType>
- Enclosing class:
- Secret
public static enum Secret.SecretType extends Enum<Secret.SecretType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AKV_SECRET_URISECRET_VALUE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Secret.SecretTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Secret.SecretType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AKV_SECRET_URI
public static final Secret.SecretType AKV_SECRET_URI
-
SECRET_VALUE
public static final Secret.SecretType SECRET_VALUE
-
-
Method Detail
-
values
public static Secret.SecretType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Secret.SecretType c : Secret.SecretType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Secret.SecretType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-