AnchorEntity.PersistState


enum AnchorEntity.PersistState : Enum


Specifies the current persist state of the Anchor.

Summary

Enum Values

PERSISTED

The anchor is persisted successfully.

PERSIST_NOT_REQUESTED

The anchor hasn't been requested to persist.

PERSIST_PENDING

The anchor is requested to persist but hasn't been persisted yet.

Public functions

AnchorEntity.PersistState
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<AnchorEntity.PersistState>

Returns an array containing the constants of this enum type, in the order they're declared.

Public properties

EnumEntries<AnchorEntity.PersistState>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Enum Values

PERSISTED

val AnchorEntity.PersistState.PERSISTEDAnchorEntity.PersistState

The anchor is persisted successfully.

PERSIST_NOT_REQUESTED

val AnchorEntity.PersistState.PERSIST_NOT_REQUESTEDAnchorEntity.PersistState

The anchor hasn't been requested to persist.

PERSIST_PENDING

val AnchorEntity.PersistState.PERSIST_PENDINGAnchorEntity.PersistState

The anchor is requested to persist but hasn't been persisted yet.

Public functions

valueOf

Added in 1.0.0-alpha01
fun valueOf(value: String): AnchorEntity.PersistState

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

Added in 1.0.0-alpha01
fun values(): Array<AnchorEntity.PersistState>

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

Public properties

entries

val entriesEnumEntries<AnchorEntity.PersistState>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.