Aracılığıyla paylaş


SslStatus Class

public final class SslStatus
extends ExpandableStringEnum<SslStatus>

Signifies whether SSL needs to be enabled or not.

Field Summary

Modifier and Type Field and Description
static final SslStatus DISABLED

Static value Disabled for SslStatus.

static final SslStatus ENABLED

Static value Enabled for SslStatus.

Constructor Summary

Constructor Description
SslStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SslStatus value.

Method Summary

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

Creates or finds a SslStatus from its string representation.

static Collection<SslStatus> values()

Gets known SslStatus values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DISABLED

public static final SslStatus DISABLED

Static value Disabled for SslStatus.

ENABLED

public static final SslStatus ENABLED

Static value Enabled for SslStatus.

Constructor Details

SslStatus

@Deprecated
public SslStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SslStatus value.

Method Details

fromString

public static SslStatus fromString(String name)

Creates or finds a SslStatus from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding SslStatus.

values

public static Collection<SslStatus> values()

Gets known SslStatus values.

Returns:

known SslStatus values.

Applies to