RecommendedActionCurrentState Class

public final class RecommendedActionCurrentState
extends ExpandableStringEnum<RecommendedActionCurrentState>

Current state the recommended action is in. Some commonly used states are: Active -> recommended action is active and no action has been taken yet. Pending -> recommended action is approved for and is awaiting execution. Executing -> recommended action is being applied on the user database. Verifying -> recommended action was applied and is being verified of its usefulness by the system. Success -> recommended action was applied and improvement found during verification. Pending Revert -> verification found little or no improvement so recommended action is queued for revert or user has manually reverted. Reverting -> changes made while applying recommended action are being reverted on the user database. Reverted -> successfully reverted the changes made by recommended action on user database. Ignored -> user explicitly ignored/discarded the recommended action.

Field Summary

Modifier and Type Field and Description
static final RecommendedActionCurrentState ACTIVE

Static value Active for RecommendedActionCurrentState.

static final RecommendedActionCurrentState ERROR

Static value Error for RecommendedActionCurrentState.

static final RecommendedActionCurrentState EXECUTING

Static value Executing for RecommendedActionCurrentState.

static final RecommendedActionCurrentState EXPIRED

Static value Expired for RecommendedActionCurrentState.

static final RecommendedActionCurrentState IGNORED

Static value Ignored for RecommendedActionCurrentState.

static final RecommendedActionCurrentState MONITORING

Static value Monitoring for RecommendedActionCurrentState.

static final RecommendedActionCurrentState PENDING

Static value Pending for RecommendedActionCurrentState.

static final RecommendedActionCurrentState PENDING_REVERT

Static value PendingRevert for RecommendedActionCurrentState.

static final RecommendedActionCurrentState RESOLVED

Static value Resolved for RecommendedActionCurrentState.

static final RecommendedActionCurrentState REVERTED

Static value Reverted for RecommendedActionCurrentState.

static final RecommendedActionCurrentState REVERTING

Static value Reverting for RecommendedActionCurrentState.

static final RecommendedActionCurrentState REVERT_CANCELLED

Static value RevertCancelled for RecommendedActionCurrentState.

static final RecommendedActionCurrentState SUCCESS

Static value Success for RecommendedActionCurrentState.

static final RecommendedActionCurrentState VERIFYING

Static value Verifying for RecommendedActionCurrentState.

Constructor Summary

Constructor Description
RecommendedActionCurrentState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of RecommendedActionCurrentState value.

Method Summary

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

Creates or finds a RecommendedActionCurrentState from its string representation.

static Collection<RecommendedActionCurrentState> values()

Gets known RecommendedActionCurrentState values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ACTIVE

public static final RecommendedActionCurrentState ACTIVE

Static value Active for RecommendedActionCurrentState.

ERROR

public static final RecommendedActionCurrentState ERROR

Static value Error for RecommendedActionCurrentState.

EXECUTING

public static final RecommendedActionCurrentState EXECUTING

Static value Executing for RecommendedActionCurrentState.

EXPIRED

public static final RecommendedActionCurrentState EXPIRED

Static value Expired for RecommendedActionCurrentState.

IGNORED

public static final RecommendedActionCurrentState IGNORED

Static value Ignored for RecommendedActionCurrentState.

MONITORING

public static final RecommendedActionCurrentState MONITORING

Static value Monitoring for RecommendedActionCurrentState.

PENDING

public static final RecommendedActionCurrentState PENDING

Static value Pending for RecommendedActionCurrentState.

PENDING_REVERT

public static final RecommendedActionCurrentState PENDING_REVERT

Static value PendingRevert for RecommendedActionCurrentState.

RESOLVED

public static final RecommendedActionCurrentState RESOLVED

Static value Resolved for RecommendedActionCurrentState.

REVERTED

public static final RecommendedActionCurrentState REVERTED

Static value Reverted for RecommendedActionCurrentState.

REVERTING

public static final RecommendedActionCurrentState REVERTING

Static value Reverting for RecommendedActionCurrentState.

REVERT_CANCELLED

public static final RecommendedActionCurrentState REVERT_CANCELLED

Static value RevertCancelled for RecommendedActionCurrentState.

SUCCESS

public static final RecommendedActionCurrentState SUCCESS

Static value Success for RecommendedActionCurrentState.

VERIFYING

public static final RecommendedActionCurrentState VERIFYING

Static value Verifying for RecommendedActionCurrentState.

Constructor Details

RecommendedActionCurrentState

@Deprecated
public RecommendedActionCurrentState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of RecommendedActionCurrentState value.

Method Details

fromString

public static RecommendedActionCurrentState fromString(String name)

Creates or finds a RecommendedActionCurrentState from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding RecommendedActionCurrentState.

values

public static Collection values()

Gets known RecommendedActionCurrentState values.

Returns:

known RecommendedActionCurrentState values.

Applies to