Package com.oracle.bmc.artifacts.model
Enum CreateContainerImageSignatureDetails.SigningAlgorithm
- java.lang.Object
-
- java.lang.Enum<CreateContainerImageSignatureDetails.SigningAlgorithm>
-
- com.oracle.bmc.artifacts.model.CreateContainerImageSignatureDetails.SigningAlgorithm
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<CreateContainerImageSignatureDetails.SigningAlgorithm>
- Enclosing class:
- CreateContainerImageSignatureDetails
public static enum CreateContainerImageSignatureDetails.SigningAlgorithm extends Enum<CreateContainerImageSignatureDetails.SigningAlgorithm> implements BmcEnum
The algorithm to be used for signing.These are the only supported signing algorithms for container images.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Sha224RsaPkcsPss
Sha256RsaPkcsPss
Sha384RsaPkcsPss
Sha512RsaPkcsPss
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateContainerImageSignatureDetails.SigningAlgorithm
create(String key)
String
getValue()
static CreateContainerImageSignatureDetails.SigningAlgorithm
valueOf(String name)
Returns the enum constant of this type with the specified name.static CreateContainerImageSignatureDetails.SigningAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Sha224RsaPkcsPss
public static final CreateContainerImageSignatureDetails.SigningAlgorithm Sha224RsaPkcsPss
-
Sha256RsaPkcsPss
public static final CreateContainerImageSignatureDetails.SigningAlgorithm Sha256RsaPkcsPss
-
Sha384RsaPkcsPss
public static final CreateContainerImageSignatureDetails.SigningAlgorithm Sha384RsaPkcsPss
-
Sha512RsaPkcsPss
public static final CreateContainerImageSignatureDetails.SigningAlgorithm Sha512RsaPkcsPss
-
-
Method Detail
-
values
public static CreateContainerImageSignatureDetails.SigningAlgorithm[] 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 (CreateContainerImageSignatureDetails.SigningAlgorithm c : CreateContainerImageSignatureDetails.SigningAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateContainerImageSignatureDetails.SigningAlgorithm 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
-
create
public static CreateContainerImageSignatureDetails.SigningAlgorithm create(String key)
-
-