ControllerState Class

public final class ControllerState
extends ExpandableStringEnum<ControllerState>

The current state of dnc controller resource.

Field Summary

Modifier and Type Field and Description
static final ControllerState DELETING

Static value Deleting for ControllerState.

static final ControllerState FAILED

Static value Failed for ControllerState.

static final ControllerState PROVISIONING

Static value Provisioning for ControllerState.

static final ControllerState SUCCEEDED

Static value Succeeded for ControllerState.

Constructor Summary

Constructor Description
ControllerState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ControllerState value.

Method Summary

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

Creates or finds a ControllerState from its string representation.

static Collection<ControllerState> values()

Gets known ControllerState values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DELETING

public static final ControllerState DELETING

Static value Deleting for ControllerState.

FAILED

public static final ControllerState FAILED

Static value Failed for ControllerState.

PROVISIONING

public static final ControllerState PROVISIONING

Static value Provisioning for ControllerState.

SUCCEEDED

public static final ControllerState SUCCEEDED

Static value Succeeded for ControllerState.

Constructor Details

ControllerState

@Deprecated
public ControllerState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ControllerState value.

Method Details

fromString

public static ControllerState fromString(String name)

Creates or finds a ControllerState from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ControllerState.

values

public static Collection<ControllerState> values()

Gets known ControllerState values.

Returns:

known ControllerState values.

Applies to