Enum PhaseTwoConfigDetails.EncryptionAlgorithm
- java.lang.Object
- 
- java.lang.Enum<PhaseTwoConfigDetails.EncryptionAlgorithm>
- 
- com.oracle.bmc.vnmonitoring.model.PhaseTwoConfigDetails.EncryptionAlgorithm
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<PhaseTwoConfigDetails.EncryptionAlgorithm>
 - Enclosing class:
- PhaseTwoConfigDetails
 
 public static enum PhaseTwoConfigDetails.EncryptionAlgorithm extends Enum<PhaseTwoConfigDetails.EncryptionAlgorithm> implements BmcEnum The encryption algorithm proposed during phase two tunnel negotiation.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PhaseTwoConfigDetails.EncryptionAlgorithmcreate(String key)StringgetValue()static PhaseTwoConfigDetails.EncryptionAlgorithmvalueOf(String name)Returns the enum constant of this type with the specified name.static PhaseTwoConfigDetails.EncryptionAlgorithm[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Aes256Gcmpublic static final PhaseTwoConfigDetails.EncryptionAlgorithm Aes256Gcm 
 - 
Aes192Gcmpublic static final PhaseTwoConfigDetails.EncryptionAlgorithm Aes192Gcm 
 - 
Aes128Gcmpublic static final PhaseTwoConfigDetails.EncryptionAlgorithm Aes128Gcm 
 - 
Aes256Cbcpublic static final PhaseTwoConfigDetails.EncryptionAlgorithm Aes256Cbc 
 - 
Aes192Cbcpublic static final PhaseTwoConfigDetails.EncryptionAlgorithm Aes192Cbc 
 - 
Aes128Cbcpublic static final PhaseTwoConfigDetails.EncryptionAlgorithm Aes128Cbc 
 
- 
 - 
Method Detail- 
valuespublic static PhaseTwoConfigDetails.EncryptionAlgorithm[] 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 (PhaseTwoConfigDetails.EncryptionAlgorithm c : PhaseTwoConfigDetails.EncryptionAlgorithm.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PhaseTwoConfigDetails.EncryptionAlgorithm 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
 
 - 
createpublic static PhaseTwoConfigDetails.EncryptionAlgorithm create(String key) 
 
- 
 
-