ConnectionState Class

public final class ConnectionState
extends ExpandableStringEnum<ConnectionState>

The connection state.

Field Summary

Modifier and Type Field and Description
static final ConnectionState REACHABLE

Static value Reachable for ConnectionState.

static final ConnectionState UNKNOWN

Static value Unknown for ConnectionState.

static final ConnectionState UNREACHABLE

Static value Unreachable for ConnectionState.

Constructor Summary

Constructor Description
ConnectionState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ConnectionState value.

Method Summary

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

Creates or finds a ConnectionState from its string representation.

static Collection<ConnectionState> values()

Gets known ConnectionState values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

REACHABLE

public static final ConnectionState REACHABLE

Static value Reachable for ConnectionState.

UNKNOWN

public static final ConnectionState UNKNOWN

Static value Unknown for ConnectionState.

UNREACHABLE

public static final ConnectionState UNREACHABLE

Static value Unreachable for ConnectionState.

Constructor Details

ConnectionState

@Deprecated
public ConnectionState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ConnectionState value.

Method Details

fromString

public static ConnectionState fromString(String name)

Creates or finds a ConnectionState from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ConnectionState.

values

public static Collection values()

Gets known ConnectionState values.

Returns:

known ConnectionState values.

Applies to