public enum CertificateFields extends Enum<CertificateFields>
| Enum Constant and Description |
|---|
CLIENT_CERTIFICATE_ENCODED |
CLIENT_CERTIFICATE_PUBLIC_KEY |
CLIENT_CERTIFICATE_TYPE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static CertificateFields |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateFields[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateFields CLIENT_CERTIFICATE_ENCODED
public static final CertificateFields CLIENT_CERTIFICATE_PUBLIC_KEY
public static final CertificateFields CLIENT_CERTIFICATE_TYPE
public static CertificateFields[] values()
for (CertificateFields c : CertificateFields.values()) System.out.println(c);
public static CertificateFields 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 nullpublic String getName()
Copyright © 2003–2021 MuleSoft, Inc.. All rights reserved.