Share via


BatchCertificateFormat Class

public final class BatchCertificateFormat
extends ExpandableStringEnum<BatchCertificateFormat>

BatchCertificateFormat enums.

Field Summary

Modifier and Type Field and Description
static final BatchCertificateFormat CER

The Certificate is a base64-encoded X.509 Certificate.

static final BatchCertificateFormat PFX

The Certificate is a PFX (PKCS#12) formatted Certificate or Certificate chain.

Constructor Summary

Constructor Description
BatchCertificateFormat()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BatchCertificateFormat value.

Method Summary

Modifier and Type Method and Description
static BatchCertificateFormat fromString(String name)

Creates or finds a BatchCertificateFormat from its string representation.

static Collection<BatchCertificateFormat> values()

Gets known BatchCertificateFormat values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CER

public static final BatchCertificateFormat CER

The Certificate is a base64-encoded X.509 Certificate.

PFX

public static final BatchCertificateFormat PFX

The Certificate is a PFX (PKCS#12) formatted Certificate or Certificate chain.

Constructor Details

BatchCertificateFormat

@Deprecated
public BatchCertificateFormat()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BatchCertificateFormat value.

Method Details

fromString

public static BatchCertificateFormat fromString(String name)

Creates or finds a BatchCertificateFormat from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding BatchCertificateFormat.

values

public static Collection<BatchCertificateFormat> values()

Gets known BatchCertificateFormat values.

Returns:

known BatchCertificateFormat values.

Applies to