SoftDeleteState Class

public final class SoftDeleteState
extends ExpandableStringEnum<SoftDeleteState>

State of soft delete.

Field Summary

Modifier and Type Field and Description
static final SoftDeleteState ALWAYS_ON

Soft Delete is permanently enabled for the BackupVault and the setting cannot be changed.

static final SoftDeleteState OFF

Soft Delete is turned off for the BackupVault.

static final SoftDeleteState ON

Soft Delete is enabled for the BackupVault but can be turned off.

Constructor Summary

Constructor Description
SoftDeleteState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SoftDeleteState value.

Method Summary

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

Creates or finds a SoftDeleteState from its string representation.

static Collection<SoftDeleteState> values()

Gets known SoftDeleteState values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ALWAYS_ON

public static final SoftDeleteState ALWAYS_ON

Soft Delete is permanently enabled for the BackupVault and the setting cannot be changed.

OFF

public static final SoftDeleteState OFF

Soft Delete is turned off for the BackupVault.

ON

public static final SoftDeleteState ON

Soft Delete is enabled for the BackupVault but can be turned off.

Constructor Details

SoftDeleteState

@Deprecated
public SoftDeleteState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SoftDeleteState value.

Method Details

fromString

public static SoftDeleteState fromString(String name)

Creates or finds a SoftDeleteState from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding SoftDeleteState.

values

public static Collection<SoftDeleteState> values()

Gets known SoftDeleteState values.

Returns:

known SoftDeleteState values.

Applies to