public enum SSLVPNCipher extends Enum<SSLVPNCipher>
| Enum Constant and Description | 
|---|
| AES128_GCM_SHA256 | 
| AES128_SHA | 
| AES256_SHA | 
| DES_CBC3_SHA | 
| ECDHE_RSA_AES128_GCM_SHA256 | 
| ECDHE_RSA_AES256_GCM_SHA384 | 
| Modifier and Type | Method and Description | 
|---|---|
| static SSLVPNCipher | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SSLVPNCipher[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SSLVPNCipher AES128_SHA
public static final SSLVPNCipher AES256_SHA
public static final SSLVPNCipher AES128_GCM_SHA256
public static final SSLVPNCipher ECDHE_RSA_AES128_GCM_SHA256
public static final SSLVPNCipher ECDHE_RSA_AES256_GCM_SHA384
public static final SSLVPNCipher DES_CBC3_SHA
public static SSLVPNCipher[] values()
for (SSLVPNCipher c : SSLVPNCipher.values()) System.out.println(c);
public static SSLVPNCipher 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 nullCopyright © 2020 iland Internet Solutions, Corp. All rights reserved.