public static enum CipherSuite.CertificateKeyAlgorithm extends Enum<CipherSuite.CertificateKeyAlgorithm>
| Modifier and Type | Method and Description |
|---|---|
static CipherSuite.CertificateKeyAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CipherSuite.CertificateKeyAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CipherSuite.CertificateKeyAlgorithm NONE
public static final CipherSuite.CertificateKeyAlgorithm DSA
public static final CipherSuite.CertificateKeyAlgorithm RSA
public static final CipherSuite.CertificateKeyAlgorithm EC
public static CipherSuite.CertificateKeyAlgorithm[] values()
for (CipherSuite.CertificateKeyAlgorithm c : CipherSuite.CertificateKeyAlgorithm.values()) System.out.println(c);
public static CipherSuite.CertificateKeyAlgorithm 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 © 2023 Eclipse Foundation. All rights reserved.