Enum ECKeySizeSpec
- java.lang.Object
- 
- java.lang.Enum<ECKeySizeSpec>
- 
- com.fortanix.sdkms.jce.provider.constants.ECKeySizeSpec
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ECKeySizeSpec>
 
 public enum ECKeySizeSpec extends Enum<ECKeySizeSpec> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ECKeySizeSpecgetByKey(String key)com.fortanix.sdkms.v1.model.EllipticCurvegetKey()intgetValue()static ECKeySizeSpecvalueOf(String name)Returns the enum constant of this type with the specified name.static ECKeySizeSpec[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SecP192K1public static final ECKeySizeSpec SecP192K1 
 - 
SecP224K1public static final ECKeySizeSpec SecP224K1 
 - 
SecP256K1public static final ECKeySizeSpec SecP256K1 
 - 
NistP192public static final ECKeySizeSpec NistP192 
 - 
NistP224public static final ECKeySizeSpec NistP224 
 - 
NistP256public static final ECKeySizeSpec NistP256 
 - 
NistP384public static final ECKeySizeSpec NistP384 
 - 
NistP521public static final ECKeySizeSpec NistP521 
 - 
Secp192r1public static final ECKeySizeSpec Secp192r1 
 - 
Secp224r1public static final ECKeySizeSpec Secp224r1 
 - 
Secp256r1public static final ECKeySizeSpec Secp256r1 
 
- 
 - 
Method Detail- 
valuespublic static ECKeySizeSpec[] 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 (ECKeySizeSpec c : ECKeySizeSpec.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ECKeySizeSpec 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 name
- NullPointerException- if the argument is null
 
 - 
getValuepublic int getValue() 
 - 
getKeypublic com.fortanix.sdkms.v1.model.EllipticCurve getKey() 
 - 
getByKeypublic static ECKeySizeSpec getByKey(String key) 
 
- 
 
-