ConnectionAnalyzerStatus Class

public final class ConnectionAnalyzerStatus
extends ExpandableStringEnum<ConnectionAnalyzerStatus>

Current execution status of the connection analyzer.

Field Summary

Modifier and Type Field and Description
static final ConnectionAnalyzerStatus FAILED

The connection analyzer failed to complete its diagnostic operations.

static final ConnectionAnalyzerStatus NOT_STARTED

The connection analyzer has been created but execution has not yet begun.

static final ConnectionAnalyzerStatus RUNNING

The connection analyzer is currently running its diagnostic operations.

static final ConnectionAnalyzerStatus SUCCEEDED

The connection analyzer completed all diagnostic operations successfully.

Constructor Summary

Constructor Description
ConnectionAnalyzerStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ConnectionAnalyzerStatus value.

Method Summary

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

Creates or finds a ConnectionAnalyzerStatus from its string representation.

static Collection<ConnectionAnalyzerStatus> values()

Gets known ConnectionAnalyzerStatus values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

FAILED

public static final ConnectionAnalyzerStatus FAILED

The connection analyzer failed to complete its diagnostic operations.

NOT_STARTED

public static final ConnectionAnalyzerStatus NOT_STARTED

The connection analyzer has been created but execution has not yet begun.

RUNNING

public static final ConnectionAnalyzerStatus RUNNING

The connection analyzer is currently running its diagnostic operations.

SUCCEEDED

public static final ConnectionAnalyzerStatus SUCCEEDED

The connection analyzer completed all diagnostic operations successfully.

Constructor Details

ConnectionAnalyzerStatus

@Deprecated
public ConnectionAnalyzerStatus()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ConnectionAnalyzerStatus value.

Method Details

fromString

public static ConnectionAnalyzerStatus fromString(String name)

Creates or finds a ConnectionAnalyzerStatus from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ConnectionAnalyzerStatus.

values

public static Collection<ConnectionAnalyzerStatus> values()

Gets known ConnectionAnalyzerStatus values.

Returns:

known ConnectionAnalyzerStatus values.

Applies to